You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by lu...@apache.org on 2003/09/23 03:11:24 UTC

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler TagLibraryInfoImpl.java

luehe       2003/09/22 18:11:24

  Modified:    jasper2/src/share/org/apache/jasper/compiler
                        TagLibraryInfoImpl.java
  Log:
  Fixed javadocs of parseTLD, which used to return boolean but was changed to void
  
  Revision  Changes    Path
  1.48      +4 -9      jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/TagLibraryInfoImpl.java
  
  Index: TagLibraryInfoImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/TagLibraryInfoImpl.java,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- TagLibraryInfoImpl.java	2 Sep 2003 21:39:59 -0000	1.47
  +++ TagLibraryInfoImpl.java	23 Sep 2003 01:11:24 -0000	1.48
  @@ -243,13 +243,8 @@
        * @param ctxt The JSP compilation context
        * @param uri The TLD's uri
        * @param in The TLD's input stream
  -     * @param jarFile The JAR file containing the TLD, or null if the tag
  +     * @param jarFileUrl The JAR file containing the TLD, or null if the tag
        * library is not packaged in a JAR
  -     *
  -     * @return true if jarFile is different from null and the TLD represented
  -     * by the given input stream contains one or more tag files packaged in the
  -     * given JAR (that is, one or more tag files whose path element starts
  -     * with /META-INF/tags), and false otherwise
        */
       private void parseTLD(JspCompilationContext ctxt,
   			  String uri, InputStream in, URL jarFileUrl)