# HG changeset patch # User lana # Date 1360627973 28800 # Node ID bd0373289b63f087c8225080fcd247626bd0bdd8 # Parent f2a6d736d66e1f468e8801b688b297c660c3118e# Parent a19e13e7c521818a5aaeb52c71bfe0440d6b4454 Merge diff -r f2a6d736d66e -r bd0373289b63 jaxp/src/javax/xml/validation/SchemaFactoryFinder.java --- a/jaxp/src/javax/xml/validation/SchemaFactoryFinder.java Thu Feb 07 12:32:59 2013 -0800 +++ b/jaxp/src/javax/xml/validation/SchemaFactoryFinder.java Mon Feb 11 16:12:53 2013 -0800 @@ -68,7 +68,7 @@ // 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 @@ debugPrintln("using thread context class loader ("+classLoader+") for search"); return; } - } catch( Throwable _ ) { + } catch( Throwable unused ) { ; // getContextClassLoader() undefined in JDK1.1 } diff -r f2a6d736d66e -r bd0373289b63 jaxp/src/javax/xml/xpath/XPathFactoryFinder.java --- a/jaxp/src/javax/xml/xpath/XPathFactoryFinder.java Thu Feb 07 12:32:59 2013 -0800 +++ b/jaxp/src/javax/xml/xpath/XPathFactoryFinder.java Mon Feb 11 16:12:53 2013 -0800 @@ -56,7 +56,7 @@ // 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 @@ debugPrintln("using thread context class loader ("+classLoader+") for search"); return; } - } catch( Throwable _ ) { + } catch( Throwable unused ) { ; // getContextClassLoader() undefined in JDK1.1 }