aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-06-28 16:07:36 +0200
committerSven Gothel <[email protected]>2014-06-28 16:07:36 +0200
commit43c85971bba8a188b8888f68133ad4ecc97131fd (patch)
tree317d687fb9d538359c6b302e7bdfc91cc782cb50 /src/jogl/classes/jogamp/opengl/GLDrawableHelper.java
parentf91dad1a0898959fb379f0f5a2081fe0fbb50f9d (diff)
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/GLDrawableHelper.java')
-rw-r--r--src/jogl/classes/jogamp/opengl/GLDrawableHelper.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java b/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java
index c0603383a..bf791822f 100644
--- a/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java
+++ b/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java
@@ -1045,7 +1045,7 @@ public class GLDrawableHelper {
}
flushGLRunnables();
} catch (Exception e) {
- System.err.println("Catched Exception on thread "+getThreadName());
+ System.err.println("Caught exception on thread "+getThreadName());
e.printStackTrace();
}
if (lastContext != null) {
@@ -1131,7 +1131,7 @@ public class GLDrawableHelper {
try {
context.release();
} catch (Exception e) {
- System.err.println("Catched Exception on thread "+getThreadName());
+ System.err.println("Caught exception on thread "+getThreadName());
e.printStackTrace();
}
}
@@ -1237,7 +1237,7 @@ public class GLDrawableHelper {
context.release();
ctxReleased = true;
} catch (Exception e) {
- System.err.println("Catched Exception on thread "+getThreadName());
+ System.err.println("Caught exception on thread "+getThreadName());
e.printStackTrace();
}
}