]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed thinko regarding check for retrieve-boundary="PAGE"
authorJoerg Pietschmann <pietsch@apache.org>
Mon, 24 Feb 2003 20:42:19 +0000 (20:42 +0000)
committerJoerg Pietschmann <pietsch@apache.org>
Mon, 24 Feb 2003 20:42:19 +0000 (20:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@195980 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/flow/RetrieveMarker.java

index b9bb274acd6c8346f0924860d3bbd1ccbe7783ac..470329196c5cc1d72e545582cb31ed74fa030825 100644 (file)
@@ -79,7 +79,7 @@ public class RetrieveMarker extends FObj {
                 }
             } else if (retrieveBoundary == RetrieveBoundary.DOCUMENT) {
                 return layoutBestMarker(areaTree.getDocumentMarkers(),area);
-            } else {
+            } else if (retrieveBoundary != RetrieveBoundary.PAGE) {
                 throw new FOPException("Illegal 'retrieve-boundary' value");
             }
         } else if (bestMarker != null) {