You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ar...@locus.apache.org on 2000/08/13 19:16:00 UTC

cvs commit: xml-fop/src/org/apache/fop/fo/pagination RepeatablePageMasterAlternatives.java

arved       00/08/13 10:16:00

  Modified:    src/org/apache/fop/fo/pagination
                        RepeatablePageMasterAlternatives.java
  Log:
  Compatibility with JDK 1.1.x
  
  Revision  Changes    Path
  1.2       +2 -2      xml-fop/src/org/apache/fop/fo/pagination/RepeatablePageMasterAlternatives.java
  
  Index: RepeatablePageMasterAlternatives.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/pagination/RepeatablePageMasterAlternatives.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RepeatablePageMasterAlternatives.java	2000/07/11 02:55:20	1.1
  +++ RepeatablePageMasterAlternatives.java	2000/08/13 17:15:59	1.2
  @@ -1,4 +1,4 @@
  -/*-- $Id: RepeatablePageMasterAlternatives.java,v 1.1 2000/07/11 02:55:20 arved Exp $ -- 
  +/*-- $Id: RepeatablePageMasterAlternatives.java,v 1.2 2000/08/13 17:15:59 arved Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -156,7 +156,7 @@
   	public void addConditionalPageMasterReference(
   		ConditionalPageMasterReference cpmr)
   	{
  -		this.conditionalPageMasterRefs.add( cpmr );
  +		this.conditionalPageMasterRefs.addElement( cpmr );
   	}
   	
   }