]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added two missing files from r698280
authorAndreas L. Delmelle <adelmelle@apache.org>
Wed, 24 Sep 2008 17:45:51 +0000 (17:45 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Wed, 24 Sep 2008 17:45:51 +0000 (17:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@698670 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/pagination/RepeatablePageMasterReference.java
src/java/org/apache/fop/fo/pagination/SinglePageMasterReference.java

index 60f8e0d6a70343588f538e38c44e65912c6b3aa4..9bbe559391e960755fa80cad7538de0161ccb3a6 100644 (file)
@@ -90,7 +90,6 @@ public class RepeatablePageMasterReference extends FObj
     public String getNextPageMasterName(boolean isOddPage,
                                         boolean isFirstPage,
                                         boolean isLastPage,
-                                        boolean isOnlyPage,
                                         boolean isEmptyPage) {
         if (getMaximumRepeats() != INFINITE) {
             if (numberConsumed < getMaximumRepeats()) {
index 89416a5343236c4e1ae11d0838c1d738f3c1fadc..be13455d7e1bf6da33493c40d675379e1f94b86f 100644 (file)
@@ -86,8 +86,7 @@ public class SinglePageMasterReference extends FObj
     public String getNextPageMasterName(boolean isOddPage,
                                         boolean isFirstPage,
                                         boolean isLastPage,
-                                        boolean isOnlyPage,
-                                        boolean isEmptyPage) {
+                                        boolean isBlankPage) {
         if (this.state == FIRST) {
             this.state = DONE;
             return masterReference;
@@ -101,8 +100,6 @@ public class SinglePageMasterReference extends FObj
         this.state = FIRST;
     }
 
-
-
     /** {@inheritDoc} */
     public boolean goToPrevious() {
         if (state == FIRST) {