]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
removed unresolvedcitations
authorJordan Naftolin <jordan@apache.org>
Wed, 28 Jun 2000 18:02:52 +0000 (18:02 +0000)
committerJordan Naftolin <jordan@apache.org>
Wed, 28 Jun 2000 18:02:52 +0000 (18:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193447 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/pagination/Root.java

index 7c5a025bd0b57aefad00d056fed6a5926558c6f2..23546b08333376d6f24902a5613ccacc1c0c5e9f 100644 (file)
@@ -75,8 +75,7 @@ public class Root extends FObj {
        }
 
        LayoutMasterSet layoutMasterSet;
-       Vector pageSequences;
-       Vector unresolvedCitations;
+       Vector pageSequences;   
                
        protected Root(FObj parent, PropertyList propertyList) throws FOPException 
        {
@@ -116,31 +115,8 @@ public class Root extends FObj {
                {
                        ((PageSequence) e.nextElement()).format(areaTree);
                }
-
-
-               if(unresolvedCitations != null)
-               {
-                       Enumeration ec = unresolvedCitations.elements();
-                       while( ec.hasMoreElements() ) 
-                       {
-                               ((PageNumberCitation)ec.nextElement()).resolvePageNumber();
-                       }
-                       
-                       // forward page number citations have been resolved here
-                       // question now is how to apply this information to the document
-                       
-               }
-       }
-       
-       
-       public void addUnresolvedCitation(Object x)
-       {
-               if(unresolvedCitations == null)
-               {
-                       unresolvedCitations = new Vector();
-               }
-               unresolvedCitations.add(x);
-       }
+               
+       }               
 
 
     public void setLayoutMasterSet(LayoutMasterSet layoutMasterSet) {