Browse Source

Can disable the warning now, replaced by an explanation of the simplification.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AreaTreeNewDesign@689028 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_0
Jeremias Maerki 16 years ago
parent
commit
62b7eb34cb
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/java/org/apache/fop/render/intermediate/IFRenderer.java

+ 2
- 1
src/java/org/apache/fop/render/intermediate/IFRenderer.java View 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);
}

Loading…
Cancel
Save