aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/area/LineArea.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/area/LineArea.java')
-rw-r--r--src/java/org/apache/fop/area/LineArea.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/java/org/apache/fop/area/LineArea.java b/src/java/org/apache/fop/area/LineArea.java
index fa1d586db..2a0896821 100644
--- a/src/java/org/apache/fop/area/LineArea.java
+++ b/src/java/org/apache/fop/area/LineArea.java
@@ -32,9 +32,7 @@ public class LineArea extends Area {
// contains inline areas
// has start indent and length, dominant baseline, height
private int startIndent;
- private int length;
- private int lineHeight;
// this is the offset for the dominant baseline
private int baseLine;
@@ -44,24 +42,6 @@ public class LineArea extends Area {
private List inlineAreas = new ArrayList();
/**
- * Set the height of this line area.
- *
- * @param height the height of the line area
- */
- public void setHeight(int height) {
- lineHeight = height;
- }
-
- /**
- * Get the height of this line area.
- *
- * @return the height of the line area
- */
- public int getHeight() {
- return lineHeight;
- }
-
- /**
* Add a child area to this line area.
*
* @param childArea the inline child area to add