reinhard    2004/01/01 07:11:22

  Modified:    src/blocks/woody/java/org/apache/cocoon/woody/transformation
                        EffectPipe.java
  Log:
  - javac (1.3.1) needs the "this" prefix in order to compile
    (Eclipse compiled without any problems)
   --> hope it doesn't break anything
  
  Revision  Changes    Path
  1.4       +3 -3      
cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/transformation/EffectPipe.java
  
  Index: EffectPipe.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/transformation/EffectPipe.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- EffectPipe.java   29 Dec 2003 22:46:25 -0000      1.3
  +++ EffectPipe.java   1 Jan 2004 15:11:22 -0000       1.4
  @@ -204,9 +204,9 @@
   
           public Output() { elements = new LinkedList(); }
   
  -        public void startPrefixMapping() throws SAXException { 
startPrefixMapping(prefix, uri); }
  +        public void startPrefixMapping() throws SAXException { 
this.startPrefixMapping(prefix, uri); }
   
  -        public void endPrefixMapping() throws SAXException { 
endPrefixMapping(prefix); }
  +        public void endPrefixMapping() throws SAXException { 
this.endPrefixMapping(prefix); }
   
           public void element(String prefix, String uri, String loc, 
Attributes attrs) throws SAXException {
               element = new Element(uri, loc, prefix + ":" + loc, attrs);
  
  
  

Reply via email to