aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/layoutmgr/RelSide.java
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2008-07-24 09:35:34 +0000
committerVincent Hennebert <vhennebert@apache.org>2008-07-24 09:35:34 +0000
commit92df262a0778ee539c849454be2810621dac1b7e (patch)
treed5be9359cbacb91dffcab6f1a6ecfe61e9db2c6b /src/java/org/apache/fop/layoutmgr/RelSide.java
parent30e2ce5bee38cbc32758e0b65fa7f98f3db76baa (diff)
downloadxmlgraphics-fop-92df262a0778ee539c849454be2810621dac1b7e.tar.gz
xmlgraphics-fop-92df262a0778ee539c849454be2810621dac1b7e.zip
Fed up with all those trailing whitespaces. Let's remove them all (once... and for all?)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@679326 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/RelSide.java')
-rw-r--r--src/java/org/apache/fop/layoutmgr/RelSide.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/RelSide.java b/src/java/org/apache/fop/layoutmgr/RelSide.java
index 26650e0b1..38e4ab9ec 100644
--- a/src/java/org/apache/fop/layoutmgr/RelSide.java
+++ b/src/java/org/apache/fop/layoutmgr/RelSide.java
@@ -30,7 +30,7 @@ public final class RelSide {
public static final RelSide START = new RelSide("start");
/** the end side */
public static final RelSide END = new RelSide("end");
-
+
private String name;
/**
@@ -45,10 +45,10 @@ public final class RelSide {
public String getName() {
return this.name;
}
-
+
/** {@inheritDoc} */
public String toString() {
return "RelSide:" + name;
}
-
+
}