stephan     2002/06/27 14:39:24

  Modified:    src/scratchpad/src/org/apache/cocoon/transformation/pagination
                        PageRules.java
  Log:
  The brackets were not closed.
  
  Revision  Changes    Path
  1.6       +3 -3      
xml-cocoon2/src/scratchpad/src/org/apache/cocoon/transformation/pagination/PageRules.java
  
  Index: PageRules.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/scratchpad/src/org/apache/cocoon/transformation/pagination/PageRules.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- PageRules.java    27 Jun 2002 18:26:35 -0000      1.5
  +++ PageRules.java    27 Jun 2002 21:39:24 -0000      1.6
  @@ -71,11 +71,11 @@
           if (this.elementURI == null) {
               return elementMatches;
           } else {
  -            return elementMatches && this.elementURI.equals(uri);
  +            return elementMatches && this.elementURI.equals(namespace);
           }
       }
   
       public boolean match(String namespace) {
  -        return ((this.elementURI != null) && (this.elementURI.equals(namespace));
  +        return ((this.elementURI != null) && (this.elementURI.equals(namespace)));
       }
   }
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to