aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2010-08-27 13:55:49 +0000
committerVincent Hennebert <vhennebert@apache.org>2010-08-27 13:55:49 +0000
commitb0061f14d523bea8a3890e8d415265cf6fc7d739 (patch)
treeafe0fde8f1b33256db2d3f667fc9c6e6d3a57081
parentf7710aa99b02a11b0cdffdc695d1b05ec2dbe6a9 (diff)
downloadxmlgraphics-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.java14
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