From 93a8c96bc96eef6381959b49ac4ee2b41a3d6fa8 Mon Sep 17 00:00:00 2001 From: codeanticode Date: Fri, 21 Dec 2012 16:45:12 +0000 Subject: [PATCH] removed println in window listener --- core/src/processing/opengl/PGL.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/processing/opengl/PGL.java b/core/src/processing/opengl/PGL.java index 39fb38d3a..ba7c0bb96 100644 --- a/core/src/processing/opengl/PGL.java +++ b/core/src/processing/opengl/PGL.java @@ -3303,13 +3303,11 @@ public class PGL { class NEWTWindowListener implements com.jogamp.newt.event.WindowListener { @Override public void windowGainedFocus(WindowEvent arg0) { - System.out.println("gained"); pg.parent.focusGained(null); } @Override public void windowLostFocus(WindowEvent arg0) { - System.out.println("lost"); pg.parent.focusLost(null); }