This commit is contained in:
Lana Steuck 2013-02-11 16:12:53 -08:00
commit b21082a545
2 changed files with 4 additions and 4 deletions
jaxp/src/javax/xml

@ -68,7 +68,7 @@ class SchemaFactoryFinder {
// Use try/catch block to support applets
try {
debug = ss.getSystemProperty("jaxp.debug") != null;
} catch (Exception _) {
} catch (Exception unused) {
debug = false;
}
}
@ -113,7 +113,7 @@ class SchemaFactoryFinder {
debugPrintln("using thread context class loader ("+classLoader+") for search");
return;
}
} catch( Throwable _ ) {
} catch( Throwable unused ) {
; // getContextClassLoader() undefined in JDK1.1
}

@ -56,7 +56,7 @@ class XPathFactoryFinder {
// Use try/catch block to support applets
try {
debug = ss.getSystemProperty("jaxp.debug") != null;
} catch (Exception _) {
} catch (Exception unused) {
debug = false;
}
}
@ -111,7 +111,7 @@ class XPathFactoryFinder {
debugPrintln("using thread context class loader ("+classLoader+") for search");
return;
}
} catch( Throwable _ ) {
} catch( Throwable unused ) {
; // getContextClassLoader() undefined in JDK1.1
}