diff --git a/core/src/processing/opengl/Texture.java b/core/src/processing/opengl/Texture.java index 275278605..c62a02bce 100644 --- a/core/src/processing/opengl/Texture.java +++ b/core/src/processing/opengl/Texture.java @@ -851,14 +851,12 @@ public class Texture implements PConstants { public void disposeSourceBuffer() { - System.out.println(" in disposeSourceBuffer"); if (usedBuffers == null) return; while (0 < usedBuffers.size()) { BufferData data = null; try { data = usedBuffers.remove(0); - System.out.println("Disposing " + data + " in disposeSourceBuffer"); } catch (NoSuchElementException ex) { PGraphics.showWarning("Cannot remove used buffer"); } diff --git a/java/libraries/video/src/processing/video/Capture.java b/java/libraries/video/src/processing/video/Capture.java index e89971dd7..6e50442f1 100644 --- a/java/libraries/video/src/processing/video/Capture.java +++ b/java/libraries/video/src/processing/video/Capture.java @@ -1005,7 +1005,6 @@ public class Capture extends PImage implements PConstants { // To handle the situation where read() is not called in the sketch, so // that the native buffers are not being sent to the sinke, and therefore, not disposed // by it. - System.out.println(" disposing nat buffer before reading new one"); natBuffer.dispose(); } natBuffer = buffer; diff --git a/java/libraries/video/src/processing/video/Movie.java b/java/libraries/video/src/processing/video/Movie.java index 2789db333..60dbb64c4 100644 --- a/java/libraries/video/src/processing/video/Movie.java +++ b/java/libraries/video/src/processing/video/Movie.java @@ -770,7 +770,6 @@ public class Movie extends PImage implements PConstants { // To handle the situation where read() is not called in the sketch, so // that the native buffers are not being sent to the sinke, and therefore, not disposed // by it. - System.out.println(" disposing nat buffer before reading new one"); natBuffer.dispose(); } natBuffer = buffer;