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/newt/classes/jogamp | |
parent | f91dad1a0898959fb379f0f5a2081fe0fbb50f9d (diff) |
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/newt/classes/jogamp')
-rw-r--r-- | src/newt/classes/jogamp/newt/DefaultEDTUtil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/jogamp/newt/DefaultEDTUtil.java b/src/newt/classes/jogamp/newt/DefaultEDTUtil.java index 7afa8d746..ae72c8c73 100644 --- a/src/newt/classes/jogamp/newt/DefaultEDTUtil.java +++ b/src/newt/classes/jogamp/newt/DefaultEDTUtil.java @@ -374,7 +374,7 @@ public class DefaultEDTUtil implements EDTUtil { } if(!task.hasWaiter() && null != task.getThrowable()) { // at least dump stack-trace in case nobody waits for result - System.err.println("DefaultEDT.run(): Catched exception occured on thread "+Thread.currentThread().getName()+": "+task.toString()); + System.err.println("DefaultEDT.run(): Caught exception occured on thread "+Thread.currentThread().getName()+": "+task.toString()); task.getThrowable().printStackTrace(); } } |