changeset 429:573e789c187a jdk8-b77

Merge
author lana
date Mon, 11 Feb 2013 16:12:53 -0800
parents 02195d0e96b9 (current diff) f0ad3747b40e (diff)
children 00958c5a7070 3206516132e8
files
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/javax/xml/validation/SchemaFactoryFinder.java	Thu Feb 07 12:32:59 2013 -0800
+++ b/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
         }
 
--- a/src/javax/xml/xpath/XPathFactoryFinder.java	Thu Feb 07 12:32:59 2013 -0800
+++ b/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
         }