Browse Source

Fixed a compilation problem.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@453899 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_93
Jeremias Maerki 17 years ago
parent
commit
2d736c5f0c
1 changed files with 6 additions and 3 deletions
  1. 6
    3
      src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java

+ 6
- 3
src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java View File

@@ -348,7 +348,10 @@ public class LineLayoutManager extends InlineStackingLayoutManager

public void updateData1(int lineCount, double demerits) {
lineLayouts.addPossibility(lineCount, demerits);
log.trace("Layout possibility in " + lineCount + " lines; break at position:");
if (super.log.isTraceEnabled()) {
super.log.trace(
"Layout possibility in " + lineCount + " lines; break at position:");
}
}

public void updateData2(KnuthNode bestActiveNode,
@@ -381,8 +384,8 @@ public class LineLayoutManager extends InlineStackingLayoutManager
}

if (difference + bestActiveNode.availableShrink < 0) {
if (log.isWarnEnabled()) {
log.warn(FONode.decorateWithContextInfo(
if (super.log.isWarnEnabled()) {
super.log.warn(FONode.decorateWithContextInfo(
"Line " + (addedPositions + 1)
+ " of a paragraph overflows the available area.", getFObj()));
}

Loading…
Cancel
Save