8007389: Remove uses of _ as identifier in jaxp
authoremc
Tue, 05 Feb 2013 14:56:34 +0000
changeset 15545 a19e13e7c521
parent 15411 3d1583b8ab93
child 15546 bd0373289b63
8007389: Remove uses of _ as identifier in jaxp Reviewed-by: lancea, joehw
jaxp/src/javax/xml/validation/SchemaFactoryFinder.java
jaxp/src/javax/xml/xpath/XPathFactoryFinder.java
--- a/jaxp/src/javax/xml/validation/SchemaFactoryFinder.java	Thu Jan 31 17:04:37 2013 -0800
+++ b/jaxp/src/javax/xml/validation/SchemaFactoryFinder.java	Tue Feb 05 14:56:34 2013 +0000
@@ -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
         }
 
--- a/jaxp/src/javax/xml/xpath/XPathFactoryFinder.java	Thu Jan 31 17:04:37 2013 -0800
+++ b/jaxp/src/javax/xml/xpath/XPathFactoryFinder.java	Tue Feb 05 14:56:34 2013 +0000
@@ -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
         }