You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/12/20 19:09:02 UTC

svn commit: r1552773 - /tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/digester/Digester.java

Author: markt
Date: Fri Dec 20 18:09:02 2013
New Revision: 1552773

URL: http://svn.apache.org/r1552773
Log:
CTR. No functional change.
Make it easier to diff against 7.0.x.
Comment fixes. Whitespace alignment.

Modified:
    tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/digester/Digester.java

Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/digester/Digester.java
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/digester/Digester.java?rev=1552773&r1=1552772&r2=1552773&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/digester/Digester.java (original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/digester/Digester.java Fri Dec 20 18:09:02 2013
@@ -1,5 +1,4 @@
-/* $Id$
- *
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -79,8 +78,6 @@ public class Digester extends DefaultHan
 
 
     // ---------------------------------------------------------- Static Fields
-
-
     private static class SystemPropertySource 
         implements IntrospectionUtils.PropertySource {
         public String getProperty( String key ) {
@@ -126,7 +123,7 @@ public class Digester extends DefaultHan
      * allows Digester to be used in environments which are unfriendly to
      * JAXP1.1 (such as WebLogic 6.0).  Note that if you use this option you
      * have to configure namespace and validation support yourself, as these
-     * properties only affect the SAXParser and emtpy constructor.
+     * properties only affect the SAXParser and empty constructor.
      */
     public Digester(XMLReader reader) {
 
@@ -634,7 +631,7 @@ public class Digester extends DefaultHan
 
     
     /**
-     * Set the publid id of the current file being parse.
+     * Set the public id of the current file being parse.
      * @param publicId the DTD/Schema public's id.
      */
     public void setPublicId(String publicId){
@@ -1204,7 +1201,7 @@ public class Digester extends DefaultHan
                     new String(buffer, start, len) + ")");
         }
 
-        ;   // No processing required
+        // No processing required
 
     }
 
@@ -1224,7 +1221,7 @@ public class Digester extends DefaultHan
             saxLog.debug("processingInstruction('" + target + "','" + data + "')");
         }
 
-        ;   // No processing is required
+        // No processing is required
 
     }
 
@@ -1269,7 +1266,7 @@ public class Digester extends DefaultHan
             saxLog.debug("skippedEntity(" + name + ")");
         }
 
-        ; // No processing required
+        // No processing required
 
     }
 
@@ -1820,7 +1817,7 @@ public class Digester extends DefaultHan
      *  for a single parameter from the body of this element)
      * @param paramTypes Set of Java class names for the types
      *  of the expected parameters
-     *  (if you wish to use a primitive type, specify the corresonding
+     *  (if you wish to use a primitive type, specify the corresponding
      *  Java wrapper class instead, such as <code>java.lang.Boolean</code>
      *  for a <code>boolean</code> parameter)
      * @see CallMethodRule
@@ -1849,7 +1846,7 @@ public class Digester extends DefaultHan
      * @param paramCount Number of expected parameters (or zero
      *  for a single parameter from the body of this element)
      * @param paramTypes The Java class names of the arguments
-     *  (if you wish to use a primitive type, specify the corresonding
+     *  (if you wish to use a primitive type, specify the corresponding
      *  Java wrapper class instead, such as <code>java.lang.Boolean</code>
      *  for a <code>boolean</code> parameter)
      * @see CallMethodRule
@@ -2253,7 +2250,7 @@ public class Digester extends DefaultHan
      * @param pattern Element matching pattern
      * @param methodName Method name to call on the parent element
      * @param paramType Java class name of the expected parameter type
-     *  (if you wish to use a primitive type, specify the corresonding
+     *  (if you wish to use a primitive type, specify the corresponding
      *  Java wrapper class instead, such as <code>java.lang.Boolean</code>
      *  for a <code>boolean</code> parameter)
      * @see SetNextRule
@@ -2387,7 +2384,7 @@ public class Digester extends DefaultHan
      * @param pattern Element matching pattern
      * @param methodName Method name to call on the parent element
      * @param paramType Java class name of the expected parameter type
-     *  (if you wish to use a primitive type, specify the corresonding
+     *  (if you wish to use a primitive type, specify the corresponding
      *  Java wrapper class instead, such as <code>java.lang.Boolean</code>
      *  for a <code>boolean</code> parameter)
      * @see SetTopRule
@@ -2668,7 +2665,7 @@ public class Digester extends DefaultHan
     protected void initialize() {
 
         // Perform lazy initialization as needed
-        ; // Nothing required by default
+        // Nothing required by default
 
     }    
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org