summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util/cache
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-06-28 15:59:26 +0200
committerSven Gothel <[email protected]>2014-06-28 15:59:26 +0200
commiteb47aaba63e3b1bf55f274a0f338f1010a017ae4 (patch)
tree5e129e532519972457a8e71edec9d1410dd8c70f /src/java/com/jogamp/common/util/cache
parent3bfc1e484ae247214d47f25fcc9b9da223f51fe1 (diff)
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/java/com/jogamp/common/util/cache')
-rw-r--r--src/java/com/jogamp/common/util/cache/TempFileCache.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/jogamp/common/util/cache/TempFileCache.java b/src/java/com/jogamp/common/util/cache/TempFileCache.java
index 3fd0a59..e1b1aab 100644
--- a/src/java/com/jogamp/common/util/cache/TempFileCache.java
+++ b/src/java/com/jogamp/common/util/cache/TempFileCache.java
@@ -80,7 +80,7 @@ public class TempFileCache {
_tmpBaseDir = new File(IOUtil.getTempDir(true /* executable */), tmpDirPrefix);
_tmpBaseDir = IOUtil.testDir(_tmpBaseDir, true /* create */, false /* executable */); // executable already checked
} catch (Exception ex) {
- System.err.println("Warning: Catched Exception while retrieving executable temp base directory:");
+ System.err.println("Warning: Caught Exception while retrieving executable temp base directory:");
ex.printStackTrace();
staticInitError = true;
}
@@ -95,7 +95,7 @@ public class TempFileCache {
try {
initTmpRoot();
} catch (Exception ex) {
- System.err.println("Warning: Catched Exception due to initializing TmpRoot:");
+ System.err.println("Warning: Caught Exception due to initializing TmpRoot:");
ex.printStackTrace();
staticInitError = true;
}