diff options
author | Wade Walker <[email protected]> | 2018-12-28 10:13:11 -0600 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-08-19 07:12:12 +0200 |
commit | eca5d53ab4370d73362dab8d1f0cc3eb974f16a8 (patch) | |
tree | a1102c106c3172c77007846fa748e57701f9dff0 /src/jogl/classes/com/jogamp | |
parent | 14e0740459036f57a7b06ca04b66e60a7eef33ed (diff) |
Removed references to non-existent method getPeer() in debug code
Diffstat (limited to 'src/jogl/classes/com/jogamp')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java b/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java index 6af7bcda4..5e0074ff8 100644 --- a/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java +++ b/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java @@ -629,7 +629,7 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing awtWindowClosingProtocol.addClosingListener(); if(DEBUG) { - System.err.println(getThreadName()+": Info: addNotify - end: peer: "+getPeer()); + System.err.println(getThreadName()+": Info: addNotify - end"); } } finally { _lock.unlock(); @@ -806,7 +806,7 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing } } if(DEBUG) { - System.err.println(getThreadName()+": Info: removeNotify - end, peer: "+getPeer()); + System.err.println(getThreadName()+": Info: removeNotify - end"); } } |