]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Cleanup
authorJeremias Maerki <jeremias@apache.org>
Fri, 27 May 2005 08:37:33 +0000 (08:37 +0000)
committerJeremias Maerki <jeremias@apache.org>
Fri, 27 May 2005 08:37:33 +0000 (08:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198694 13f79535-47bb-0310-9956-ffa450edef68

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

index 81e079cb81ebde99cf89fa07483d714a5f1b7d7d..616f9409a0e29998d3af3f3061521c65b71d3b3e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 package org.apache.fop.fo.pagination;
 
-// Java
-import java.util.ArrayList;
-import java.util.List;
-
 import org.xml.sax.Locator;
 
 import org.apache.fop.apps.FOPException;
@@ -29,22 +25,15 @@ import org.apache.fop.fo.FONode;
 import org.apache.fop.fo.FObj;
 import org.apache.fop.fo.PropertyList;
 import org.apache.fop.fo.ValidationException;
-import org.apache.fop.layoutmgr.FlowLayoutManager;
 
 /**
  * Class modelling the fo:flow object.
- * @todo check need for markerSnapshot, contentWidth
  */
 public class Flow extends FObj {
     // The value of properties relevant for fo:flow.
     private String flowName;
     // End of property values
     
-    /**
-     * ArrayList to store snapshot
-     */
-    private ArrayList markerSnapshot;
-
     /** used for FO validation */
     private boolean blockItemFound = false;
 
@@ -126,9 +115,7 @@ public class Flow extends FObj {
         return true;
     }
 
-    /**
-     * Return "flow-name" property.
-     */
+    /** @return "flow-name" property. */
     public String getFlowName() {
         return flowName;
     }