From 2d736c5f0c6905e14bd7dd732ca0cd4d4b9a7338 Mon Sep 17 00:00:00 2001 From: Jeremias Maerki Date: Sat, 7 Oct 2006 13:17:57 +0000 Subject: [PATCH] Fixed a compilation problem. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@453899 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/fop/layoutmgr/inline/LineLayoutManager.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java b/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java index f1dba6d93..b3e1e33ba 100644 --- a/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java @@ -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())); } -- 2.39.5