diff options
author | Sven Gothel <[email protected]> | 2014-06-28 16:07:36 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-06-28 16:07:36 +0200 |
commit | 43c85971bba8a188b8888f68133ad4ecc97131fd (patch) | |
tree | 317d687fb9d538359c6b302e7bdfc91cc782cb50 /src/nativewindow/classes/javax | |
parent | f91dad1a0898959fb379f0f5a2081fe0fbb50f9d (diff) |
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/nativewindow/classes/javax')
-rw-r--r-- | src/nativewindow/classes/javax/media/nativewindow/NativeWindowFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nativewindow/classes/javax/media/nativewindow/NativeWindowFactory.java b/src/nativewindow/classes/javax/media/nativewindow/NativeWindowFactory.java index 5ef32a5aa..edaed3a39 100644 --- a/src/nativewindow/classes/javax/media/nativewindow/NativeWindowFactory.java +++ b/src/nativewindow/classes/javax/media/nativewindow/NativeWindowFactory.java @@ -263,7 +263,7 @@ public abstract class NativeWindowFactory { } customShutdownHooks.get(i).run(); } catch(Throwable t) { - System.err.println("NativeWindowFactory.shutdown: Catched "+t.getClass().getName()+" during customShutdownHook #"+(i+1)+"/"+cshCount); + System.err.println("NativeWindowFactory.shutdown: Caught "+t.getClass().getName()+" during customShutdownHook #"+(i+1)+"/"+cshCount); if( DEBUG ) { t.printStackTrace(); } |