diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2010-08-27 13:55:49 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2010-08-27 13:55:49 +0000 |
commit | b0061f14d523bea8a3890e8d415265cf6fc7d739 (patch) | |
tree | afe0fde8f1b33256db2d3f667fc9c6e6d3a57081 | |
parent | f7710aa99b02a11b0cdffdc695d1b05ec2dbe6a9 (diff) | |
download | xmlgraphics-fop-b0061f14d523bea8a3890e8d415265cf6fc7d739.tar.gz xmlgraphics-fop-b0061f14d523bea8a3890e8d415265cf6fc7d739.zip |
Removed unused methods
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@990154 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java b/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java index 8332c9462..04978ad54 100644 --- a/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java @@ -196,20 +196,14 @@ public class LineLayoutManager extends InlineStackingLayoutManager * which was the first element in the paragraph * returned by each LM. */ - private class Update { - private InlineLevelLayoutManager inlineLM; - private int firstIndex; + private final class Update { + private final InlineLevelLayoutManager inlineLM; + private final int firstIndex; - public Update(InlineLevelLayoutManager lm, int index) { + private Update(InlineLevelLayoutManager lm, int index) { inlineLM = lm; firstIndex = index; } - InlineLevelLayoutManager getInlineLM() { - return inlineLM; - } - int getFirstIndex() { - return firstIndex; - } } // this class represents a paragraph |