diff options
author | Sven Gothel <[email protected]> | 2014-06-28 15:59:26 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-06-28 15:59:26 +0200 |
commit | eb47aaba63e3b1bf55f274a0f338f1010a017ae4 (patch) | |
tree | 5e129e532519972457a8e71edec9d1410dd8c70f /src/java/com/jogamp/common/os/NativeLibrary.java | |
parent | 3bfc1e484ae247214d47f25fcc9b9da223f51fe1 (diff) |
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/java/com/jogamp/common/os/NativeLibrary.java')
-rw-r--r-- | src/java/com/jogamp/common/os/NativeLibrary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/os/NativeLibrary.java b/src/java/com/jogamp/common/os/NativeLibrary.java index 794d712..b6ed7ad 100644 --- a/src/java/com/jogamp/common/os/NativeLibrary.java +++ b/src/java/com/jogamp/common/os/NativeLibrary.java @@ -209,7 +209,7 @@ public final class NativeLibrary implements DynamicLookupHelper { return new NativeLibrary(res, path, global); } else if( DEBUG ) { if( null != t ) { - System.err.println("NativeLibrary.open: Catched "+t.getClass().getSimpleName()+": "+t.getMessage()); + System.err.println("NativeLibrary.open: Caught "+t.getClass().getSimpleName()+": "+t.getMessage()); } String errstr; try { |