aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/afp/modca/IncludePageSegment.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/afp/modca/IncludePageSegment.java')
-rw-r--r--src/java/org/apache/fop/afp/modca/IncludePageSegment.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/java/org/apache/fop/afp/modca/IncludePageSegment.java b/src/java/org/apache/fop/afp/modca/IncludePageSegment.java
index 7355e3b1a..c6eceafea 100644
--- a/src/java/org/apache/fop/afp/modca/IncludePageSegment.java
+++ b/src/java/org/apache/fop/afp/modca/IncludePageSegment.java
@@ -46,22 +46,22 @@ public class IncludePageSegment extends AbstractNamedAFPObject {
* The x position where we need to put this object on the page
*/
private int x;
-
+
/**
* The y position where we need to put this object on the page
*/
private int y;
-
+
/**
* Constructor for the Include Page Segment
- *
+ *
* @param name Name of the page segment
* @param x The x position
* @param y The y position
*/
public IncludePageSegment(String name, int x, int y) {
super(name);
-
+
this.x = x;
this.y = y;
}