diff --git a/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java b/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java index 6529d109dfd1e678df3e1861bc1b485af5a6b234..0a03b1266b0594e2d2ce56a2bdf9ecabca767b80 100644 --- a/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java +++ b/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java @@ -835,7 +835,7 @@ public class AServProtocolManager { public static boolean implementsInterface( String classname, Class tosubclass, boolean debug ) { 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 // to have ALL interfaces with this function!!! // This is really stupid but that's life @@ -857,8 +857,6 @@ public class AServProtocolManager { } catch (ClassNotFoundException cnfex) { } catch (UnsatisfiedLinkError ule) { if ( debug ) System.err.println(" ******** "+classname); - } catch (ExceptionInInitializerError eiie) { - // This one has been added for OMWG, this is a bad error } return false; }