https://issues.apache.org/bugzilla/show_bug.cgi?id=50018
authortimw <timw@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 29 Sep 2010 08:08:32 +0000 (08:08 +0000)
committertimw <timw@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 29 Sep 2010 08:08:32 +0000 (08:08 +0000)
Minor javadoc corrections in Jasper.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1002509 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/ParserController.java
java/org/apache/jasper/compiler/TagFileProcessor.java
webapps/docs/changelog.xml

index 97c7763..d6e18e3 100644 (file)
@@ -125,7 +125,7 @@ class ParserController implements TagConstants {
      *
      * @param inFileName The path to the resource to be included.
      * @param parent The parent node of the include directive.
-     * @param jarFileUrl The JAR file from which to read the included resource,
+     * @param jarResource The JAR file from which to read the included resource,
      * or null of the included resource is to be read from the filesystem
      */
     public Node.Nodes parse(String inFileName, Node parent,
@@ -142,7 +142,7 @@ class ParserController implements TagConstants {
      * This is invoked by the compiler 
      *
      * @param inFileName    The name of the tag file to be parsed.
-     * @param tagFileJarUrl The location of the tag file.
+     * @param jarResource The location of the tag file.
      */
     public Node.Nodes parseTagFileDirectives(String inFileName,
             JarResource jarResource)
@@ -168,7 +168,7 @@ class ParserController implements TagConstants {
      * @param directivesOnly true if the file to be parsed is a tag file and
      * we are only interested in the directives needed for constructing a
      * TagFileInfo.
-     * @param jarFile The JAR file from which to read the JSP page or tag file,
+     * @param jarResource The JAR file from which to read the JSP page or tag file,
      * or null if the JSP page or tag file is to be read from the filesystem
      */
     private Node.Nodes doParse(String inFileName,
index cd39877..481f4fd 100644 (file)
@@ -480,8 +480,8 @@ class TagFileProcessor {
      *            the tag name as specified in the TLD
      * @param path
      *            the path for the tagfile
-     * @param tagFileJarUrl
-     *            the url for the Jar containing the tag file 
+     * @param jarResource
+     *            the Jar resource containing the tag file 
      * @param tagLibInfo
      *            the TagLibraryInfo object associated with this TagInfo
      * @return a TagInfo object assembled from the directives in the tag file.
index 9b31a74..9260301 100644 (file)
         <bug>49909</bug>: Fix a regression introduced with the fix for
         <bug>47950</bug> that prevented JSTL classes being loaded. (markt)
       </fix>
+      <fix>
+        <bug>50018</bug>: Fix some minor Javadoc errors in Jasper source.
+        Based on a patch by sebb. (timw)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Coyote">