8007389: Remove uses of _ as identifier in jaxp
Reviewed-by: lancea, joehw
This commit is contained in:
parent
34d99c6b39
commit
3d09f6b621
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user