Author: acumiskey
Date: Wed Oct 22 04:42:45 2008
New Revision: 707040
URL: http://svn.apache.org/viewvc?rev=707040&view=rev
Log:
Cleanup.
Modified:
xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/render/afp/BorderPaintInfo.java
Modified:
xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/render/afp/BorderPaintInfo.java
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/render/afp/BorderPaintInfo.java?rev=707040&r1=707039&r2=707040&view=diff
==============================================================================
---
xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/render/afp/BorderPaintInfo.java
(original)
+++
xmlgraphics/fop/branches/Temp_AFPGOCAResources/src/java/org/apache/fop/render/afp/BorderPaintInfo.java
Wed Oct 22 04:42:45 2008
@@ -30,7 +30,6 @@
private final float x2;
private final float y2;
private final boolean isHorizontal;
-// private final boolean startOrBefore;
private final int style;
private final Color color;
@@ -42,18 +41,16 @@
* @param x2 the x2 coordinate
* @param y2 the y2 coordinate
* @param isHorizontal true when the border line is horizontal
- * @param startOrBefore true when is before
* @param style the border style
* @param color the border color
*/
public BorderPaintInfo(float x1, float y1, float x2, float y2,
- boolean isHorizontal, /*boolean startOrBefore,*/ int style, Color
color) {
+ boolean isHorizontal, int style, Color color) {
this.x1 = x1;
this.y1 = y1;
this.x2 = x2;
this.y2 = y2;
this.isHorizontal = isHorizontal;
-// this.startOrBefore = startOrBefore;
this.style = style;
this.color = color;
}
@@ -103,15 +100,6 @@
return isHorizontal;
}
-// /**
-// * Returns true when this is start
-// *
-// * @return true when this is start
-// */
-// public boolean isStartOrBefore() {
-// return startOrBefore;
-// }
-//
/**
* Returns the style
*
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]