]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Can disable the warning now, replaced by an explanation of the simplification.
authorJeremias Maerki <jeremias@apache.org>
Tue, 26 Aug 2008 10:47:01 +0000 (10:47 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 26 Aug 2008 10:47:01 +0000 (10:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AreaTreeNewDesign@689028 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/intermediate/IFRenderer.java

index fa6013a52ae6c611cb4e22c4cef52a1776bc5cdd..e9190be88154726c1c4a8eeb8f53d1bae892d319 100644 (file)
@@ -1054,7 +1054,8 @@ public class IFRenderer extends AbstractPathOrientedRenderer {
     /** {@inheritDoc} */
     protected void drawBorderLine(float x1, float y1, float x2, float y2, boolean horz,
             boolean startOrBefore, int style, Color col) {
-        log.warn("drawBorderLine() not properly implemented, yet");
+        //Simplified implementation that is only used by renderTextDecoration()
+        //drawBorders() is overridden and uses the Painter's high-level method drawBorderRect()
         updateColor(col, true);
         fillRect(x1, y1, x2 - x1, y2 - y1);
     }