Index: java/org/apache/jasper/compiler/ParserController.java =================================================================== --- java/org/apache/jasper/compiler/ParserController.java (revision 1001958) +++ java/org/apache/jasper/compiler/ParserController.java (working copy) @@ -125,7 +125,7 @@ * * @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 @@ * 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) Index: java/org/apache/jasper/compiler/TagFileProcessor.java =================================================================== --- java/org/apache/jasper/compiler/TagFileProcessor.java (revision 1001705) +++ java/org/apache/jasper/compiler/TagFileProcessor.java (working copy) @@ -480,8 +480,8 @@ * 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 {@link JarResource} for the Jar 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.