diff options
author | Sven Gothel <[email protected]> | 2012-05-13 22:51:30 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-05-13 22:51:30 +0200 |
commit | a338d1c94617f923609619d4edde7e1b1084cad5 (patch) | |
tree | 0e5a4382268d7a60627c938f570523d1e0839b8e /src/newt/classes/com/jogamp | |
parent | 212cd096e2c1d92b565cf60dd4c3714f59a07d9e (diff) |
Refine commit be7cac1713b166ca6578c685ec8a7231a8429919:
Throw ClassNotFoundException in Display/Screen/Window factory if neither custom
nor default class is available.
Suppress Warning of non existing custom class (in non DEBUG mode),
rely on later ClassNotFoundException (see above).
Diffstat (limited to 'src/newt/classes/com/jogamp')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/NewtFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/com/jogamp/newt/NewtFactory.java b/src/newt/classes/com/jogamp/newt/NewtFactory.java index 82f74e370..61dbfb34c 100644 --- a/src/newt/classes/com/jogamp/newt/NewtFactory.java +++ b/src/newt/classes/com/jogamp/newt/NewtFactory.java @@ -63,8 +63,8 @@ public class NewtFactory { try { clazz = Class.forName(clazzName); } catch (Throwable t) { - System.err.println("Warning: Failed to find class <"+clazzName+">: "+t.getMessage()); if(DEBUG_IMPLEMENTATION) { + System.err.println("Warning: Failed to find class <"+clazzName+">: "+t.getMessage()); t.printStackTrace(); } } |