You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by bc...@apache.org on 2004/09/07 14:19:48 UTC

cvs commit: xml-fop/src/java/org/apache/fop/fo/expr NumericProperty.java

bckfnn      2004/09/07 05:19:48

  Modified:    src/java/org/apache/fop/fo/expr NumericProperty.java
  Log:
  Return a more 'length' like debug string for numerics with dimension of 1.
  
  Revision  Changes    Path
  1.6       +5 -1      xml-fop/src/java/org/apache/fop/fo/expr/NumericProperty.java
  
  Index: NumericProperty.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/expr/NumericProperty.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- NumericProperty.java	27 Feb 2004 17:42:54 -0000	1.5
  +++ NumericProperty.java	7 Sep 2004 12:19:48 -0000	1.6
  @@ -128,6 +128,10 @@
        * debugging.
        */
       public String toString() {
  -        return value + "^" + dim;
  +    	if (dim == 1) {
  +    		return (int) value + "mpt";
  +    	} else {
  +    		return value + "^" + dim;
  +    	}
       }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org