Skip to content

Commit 8cf99b1

Browse files
committed
Remove some printlns
1 parent 1484f6c commit 8cf99b1

File tree

5 files changed

+0
-12
lines changed

5 files changed

+0
-12
lines changed

src/main/java/dev/isxander/controlify/controller/ControllerEntity.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,4 @@ public void close() {
198198
public ControlifyLogger getLogger() {
199199
return logger;
200200
}
201-
202-
@Override
203-
public <T extends ECSComponent> boolean setComponent(T component) {
204-
logger.debugLog("Adding component: {}", component.id());
205-
return super.setComponent(component);
206-
}
207201
}

src/main/java/dev/isxander/controlify/controller/haptic/HDHapticComponent.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ private CompletableFuture<CompleteSoundData> getSoundData(CompletableFuture<Soun
9191

9292
bytes.get(audio);
9393

94-
System.out.println("Audio: " + Arrays.toString(audio));
95-
9694
return new CompleteSoundData(audio, format);
9795
});
9896
}

src/main/java/dev/isxander/controlify/driver/SDL3NativesManager.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,6 @@ private static CompletableFuture<Boolean> downloadAndStart(Path localLibraryPath
182182
}
183183

184184
private static CompletableFuture<Boolean> downloadLibrary(Path targetFolder) {
185-
System.out.println("starting download");
186-
187185
String artifactName = Target.CURRENT.getArtifactName();
188186
String md5Name = Target.CURRENT.getArtifactMD5Name();
189187

src/main/java/dev/isxander/controlify/driver/sdl/DecodedGUID.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ public static DecodedGUID fromString(String guid) {
3939
}
4040

4141
public static DecodedGUID fromBytes(byte[] guid) {
42-
System.out.println(Arrays.toString(guid));
4342
Validate.isTrue(guid.length == 16, "GUID must be 16 bytes long");
4443

4544
short bus = readShortLE(guid, 0);

src/main/java/dev/isxander/controlify/driver/sdl/SDLCommonDriver.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,6 @@ public static AudioStreamHandle createWithAudio(SDL_AudioDeviceID device, SDL_Au
436436
if (!SDL_SetAudioStreamOutputChannelMap(stream, channelMap)) {
437437
System.out.println(SDL_GetError());
438438
}
439-
System.out.println(Arrays.toString(SDL_GetAudioStreamOutputChannelMap(stream)));
440439

441440
var handle = new AudioStreamHandle(stream, audioSpec);
442441
handle.queueAudio(audio, tickLength);

0 commit comments

Comments
 (0)