aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl/util/glsl
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/jogl/classes/com/jogamp/opengl/util/glsl
parentf91dad1a0898959fb379f0f5a2081fe0fbb50f9d (diff)
Fix 'typo' in messages: 'Catched' -> 'Caught'
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util/glsl')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java b/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java
index 5cd384c58..ad5331a28 100644
--- a/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java
+++ b/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java
@@ -173,7 +173,7 @@ public class ShaderUtil {
}
}
} catch (GLException gle) {
- System.err.println("Catched Exception on thread "+Thread.currentThread().getName());
+ System.err.println("Caught exception on thread "+Thread.currentThread().getName());
gle.printStackTrace();
}
}
@@ -203,7 +203,7 @@ public class ShaderUtil {
info.shaderCompilerAvailable = new Boolean(v);
queryOK = true;
} catch (GLException gle) {
- System.err.println("Catched Exception on thread "+Thread.currentThread().getName());
+ System.err.println("Caught exception on thread "+Thread.currentThread().getName());
gle.printStackTrace();
}
if(!queryOK) {