From: Finn Bock Date: Tue, 7 Sep 2004 13:14:10 +0000 (+0000) Subject: Style: removed tabs. X-Git-Tag: Root_Temp_KnuthStylePageBreaking~564 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c03a825855da8abd27abdea3c28bebdb908f4b0b;p=xmlgraphics-fop.git Style: removed tabs. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197927 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/fo/expr/NumericProperty.java b/src/java/org/apache/fop/fo/expr/NumericProperty.java index ce06c38ab..347fc8f84 100644 --- a/src/java/org/apache/fop/fo/expr/NumericProperty.java +++ b/src/java/org/apache/fop/fo/expr/NumericProperty.java @@ -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; + } } }