aboutsummaryrefslogtreecommitdiffstats
path: root/src/nativewindow/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/nativewindow/classes/com
parentf91dad1a0898959fb379f0f5a2081fe0fbb50f9d (diff)
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/nativewindow/classes/com')
-rw-r--r--src/nativewindow/classes/com/jogamp/nativewindow/awt/AppContextInfo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nativewindow/classes/com/jogamp/nativewindow/awt/AppContextInfo.java b/src/nativewindow/classes/com/jogamp/nativewindow/awt/AppContextInfo.java
index 54762bb77..c4f16e046 100644
--- a/src/nativewindow/classes/com/jogamp/nativewindow/awt/AppContextInfo.java
+++ b/src/nativewindow/classes/com/jogamp/nativewindow/awt/AppContextInfo.java
@@ -33,7 +33,7 @@ public class AppContextInfo {
final Class<?> appContextClass = Class.forName("sun.awt.AppContext");
_getAppContextMethod[0] = appContextClass.getMethod("getAppContext");
} catch(Throwable ex) {
- System.err.println("Bug 1004: Catched @ static: "+ex.getMessage());
+ System.err.println("Bug 1004: Caught @ static: "+ex.getMessage());
ex.printStackTrace();
}
return null;
@@ -186,7 +186,7 @@ public class AppContextInfo {
try {
return getAppContextMethod.invoke(null);
} catch(Exception ex) {
- System.err.println("Bug 1004: Catched: "+ex.getMessage());
+ System.err.println("Bug 1004: Caught: "+ex.getMessage());
ex.printStackTrace();
return null;
}