aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/classes/com
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/newt/classes/com
parentf91dad1a0898959fb379f0f5a2081fe0fbb50f9d (diff)
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/newt/classes/com')
-rw-r--r--src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java2
-rw-r--r--src/newt/classes/com/jogamp/newt/opengl/GLWindow.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java b/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
index 48c7cd5bf..4efd60765 100644
--- a/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
+++ b/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
@@ -751,7 +751,7 @@ public class NewtCanvasAWT extends java.awt.Canvas implements WindowClosingProto
}
}
} catch (NoninvertibleTransformException nte) {
- System.err.println("Catched: Inversion failed of: "+g2d.getTransform());
+ System.err.println("Caught: Inversion failed of: "+g2d.getTransform());
nte.printStackTrace();
}
if( DEBUG ) {
diff --git a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java
index cdc4f1217..992cc4284 100644
--- a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java
+++ b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java
@@ -626,7 +626,7 @@ public class GLWindow extends GLAutoDrawableBase implements GLAutoDrawable, Wind
animThread.stop();
} catch(Throwable t) {
if( DEBUG ) {
- System.err.println("Catched "+t.getClass().getName()+": "+t.getMessage());
+ System.err.println("Caught "+t.getClass().getName()+": "+t.getMessage());
t.printStackTrace();
}
}