removed null pointer exception catch block left in from testing

This commit is contained in:
James Muehlner
2011-12-20 11:55:02 -08:00
parent 5ba1f9fea3
commit d327940d2a

View File

@@ -76,11 +76,6 @@ public class GuacamoleClassLoader extends ClassLoader {
exception = e;
}
catch (NullPointerException e) {
// On error, record exception
e.printStackTrace(System.err);
}
}
private GuacamoleClassLoader(File libDirectory) throws GuacamoleException {