Revision: 7338
Author: victormote
Date: 2006-05-31 10:51:30 -0700 (Wed, 31 May 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7338&view=rev
Log Message:
-----------
Remove unused method.
Modified Paths:
--------------
trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java
Modified: trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java
===================================================================
--- trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java 2006-05-31 17:39:26 UTC (rev 7337)
+++ trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java 2006-05-31 17:51:30 UTC (rev 7338)
@@ -31,8 +31,6 @@
import org.axsl.foR.fo.RegionBody;
import org.axsl.foR.fo.SimplePageMaster;
-import java.util.List;
-
public class RegionRABody extends AreaFixed implements RegionBodyArea,
org.axsl.areaW.RegionRABody {
@@ -74,17 +72,6 @@
return footnoteReferenceArea;
}
- protected static void resetMaxHeight(Area ar, int change) {
- List childs = ar.getChildren();
- for (int i = 0; i < childs.size(); i++) {
- Object obj = childs.get(i);
- if (obj instanceof Area) {
- Area childArea = (Area)obj;
- resetMaxHeight(childArea, change);
- }
- }
- }
-
public byte getAreaType() {
return AreaNode.AREATYPE_BODY_AREA_CONTAINER;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|