Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 23205019 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- suppressed outdated exception trap

parent 7fba73ed
No related branches found
No related tags found
No related merge requests found
...@@ -835,7 +835,7 @@ public class AServProtocolManager { ...@@ -835,7 +835,7 @@ public class AServProtocolManager {
public static boolean implementsInterface( String classname, Class tosubclass, boolean debug ) { public static boolean implementsInterface( String classname, Class tosubclass, boolean debug ) {
try { try {
if ( classname.equals("org.apache.xalan.extensions.ExtensionHandlerGeneral") ) throw new ClassNotFoundException( "Stupid JAVA/Xalan bug"); if ( classname.equals("org.apache.xalan.extensions.ExtensionHandlerGeneral") ) throw new ClassNotFoundException( "Stupid JAVA/Xalan bug" );
// JE: Here there is a bug that is that it is not possible // JE: Here there is a bug that is that it is not possible
// to have ALL interfaces with this function!!! // to have ALL interfaces with this function!!!
// This is really stupid but that's life // This is really stupid but that's life
...@@ -857,8 +857,6 @@ public class AServProtocolManager { ...@@ -857,8 +857,6 @@ public class AServProtocolManager {
} catch (ClassNotFoundException cnfex) { } catch (ClassNotFoundException cnfex) {
} catch (UnsatisfiedLinkError ule) { } catch (UnsatisfiedLinkError ule) {
if ( debug ) System.err.println(" ******** "+classname); if ( debug ) System.err.println(" ******** "+classname);
} catch (ExceptionInInitializerError eiie) {
// This one has been added for OMWG, this is a bad error
} }
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment