luehe       2002/10/15 17:03:10

  Modified:    jasper2/src/share/org/apache/jasper/compiler
                        ImplicitTagLibraryInfo.java
  Log:
  Fixed call to super() in constructor
  
  Revision  Changes    Path
  1.11      +4 -4      
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/ImplicitTagLibraryInfo.java
  
  Index: ImplicitTagLibraryInfo.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/ImplicitTagLibraryInfo.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ImplicitTagLibraryInfo.java       13 Sep 2002 18:20:42 -0000      1.10
  +++ ImplicitTagLibraryInfo.java       16 Oct 2002 00:03:10 -0000      1.11
  @@ -96,7 +96,7 @@
                                  String prefix,
                                  String tagdir,
                                  ErrorDispatcher err) throws JasperException {
  -        super(prefix, tagdir);
  +        super(prefix, null, tagdir);
        this.pc = pc;
        this.tagFileMap = new Hashtable();
        this.vec = new Vector();
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to