diff options
Diffstat (limited to 'src/org/jogamp/vecmath')
-rw-r--r-- | src/org/jogamp/vecmath/VecMathI18N.java | 2 |
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); |