8007389: Remove uses of _ as identifier in jaxp

Reviewed-by: lancea, joehw
This commit is contained in:
Eric McCorkle 2013-02-05 14:56:34 +00:00
parent 34d99c6b39
commit 3d09f6b621
2 changed files with 4 additions and 4 deletions

View File

@ -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
}

View File

@ -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
}