Revision: 7324
Author: victormote
Date: 2006-05-30 13:10:49 -0700 (Tue, 30 May 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7324&view=rev
Log Message:
-----------
Conform to axsl changes: Remove unneeded method.
Modified Paths:
--------------
trunk/foray/foray-areatree/src/java/org/foray/area/NormalBlockArea.java
Modified: trunk/foray/foray-areatree/src/java/org/foray/area/NormalBlockArea.java
===================================================================
--- trunk/foray/foray-areatree/src/java/org/foray/area/NormalBlockArea.java 2006-05-30 20:10:42 UTC (rev 7323)
+++ trunk/foray/foray-areatree/src/java/org/foray/area/NormalBlockArea.java 2006-05-30 20:10:49 UTC (rev 7324)
@@ -53,20 +53,6 @@
}
/**
- * Add a Line Area to this block area.
- * Used internally to add a completed line area to this block area
- * when either a new line area is created or this block area is
- * completed.
- *
- * @param la the LineArea to add
- */
- public void addLineArea(org.axsl.areaW.LineArea la) {
- if (!la.isEmpty()) {
- la.verticalAlign();
- }
- }
-
- /**
* Get the current line area in this block area.
* This is used to get the current line area for adding
* inline objects.
@@ -120,7 +106,7 @@
if (this.currentLineArea == null) {
return;
}
- this.addLineArea(this.currentLineArea);
+ this.currentLineArea.verticalAlign();
this.currentLineArea = null;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|