Merge revision 12 of oddlabs svn repo.

Mac OS X: build.xml fix
Windows: Fixed crash when Raw plugin fails to load
Mac OS X: Tweak native libraries so only one library, libjinput-osx.jnilib contains both gcc 3 ppc code and gcc 4 i386 code. That way, we'll cover all releases and architectures with one native library instead of two
This commit is contained in:
endolf 2006-05-14 09:14:52 +00:00
parent 559c008a02
commit 1dc8f9ea11
3 changed files with 26 additions and 20 deletions

View file

@ -144,11 +144,7 @@ class DefaultControllerEnvironment extends ControllerEnvironment {
ControllerEnvironment ce = (ControllerEnvironment) ceClass.newInstance();
addControllers(ce.getControllers());
}
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
} catch (Throwable e) {
e.printStackTrace();
}
}