]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Style: removed tabs.
authorFinn Bock <bckfnn@apache.org>
Tue, 7 Sep 2004 13:14:10 +0000 (13:14 +0000)
committerFinn Bock <bckfnn@apache.org>
Tue, 7 Sep 2004 13:14:10 +0000 (13:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197927 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/expr/NumericProperty.java

index ce06c38abe239a0b23ecaa94408798321b403156..347fc8f8460df308f2c3ca3713e55fe65299e33a 100644 (file)
@@ -128,10 +128,10 @@ public class NumericProperty extends Property implements Numeric, Length {
      * debugging.
      */
     public String toString() {
-       if (dim == 1) {
-               return (int) value + "mpt";
-       } else {
-               return value + "^" + dim;
-       }
+        if (dim == 1) {
+            return (int) value + "mpt";
+        } else {
+            return value + "^" + dim;
+        }
     }
 }