summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/org/jogamp/vecmath/VecMathI18N.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/jogamp/vecmath/VecMathI18N.java b/src/org/jogamp/vecmath/VecMathI18N.java
index 599d2bd..48f0ce4 100644
--- a/src/org/jogamp/vecmath/VecMathI18N.java
+++ b/src/org/jogamp/vecmath/VecMathI18N.java
@@ -34,7 +34,7 @@ class VecMathI18N {
static String getString(String key) {
String s;
try {
- s = (String) ResourceBundle.getBundle("javax.vecmath.ExceptionStrings").getString(key);
+ s = (String) ResourceBundle.getBundle("org.jogamp.vecmath.ExceptionStrings").getString(key);
}
catch (MissingResourceException e) {
System.err.println("VecMathI18N: Error looking up: " + key);