You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by vh...@apache.org on 2001/03/14 01:52:44 UTC

cvs commit: xml-batik/sources/org/apache/batik/svggen SVGBasicStroke.java

vhardy      01/03/13 16:52:44

  Modified:    sources/org/apache/batik/svggen SVGBasicStroke.java
  Log:
  Modified dash-array format to reflect SVG specification correction.
  Now uses comma separated list, are commanded by the new spec.
  
  Revision  Changes    Path
  1.5       +2 -2      xml-batik/sources/org/apache/batik/svggen/SVGBasicStroke.java
  
  Index: SVGBasicStroke.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/svggen/SVGBasicStroke.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SVGBasicStroke.java	2001/02/05 10:56:13	1.4
  +++ SVGBasicStroke.java	2001/03/14 00:52:44	1.5
  @@ -17,7 +17,7 @@
    * a set of SVG style attributes
    *
    * @author <a href="mailto:vincent.hardy@eng.sun.com">Vincent Hardy</a>
  - * @version $Id: SVGBasicStroke.java,v 1.4 2001/02/05 10:56:13 tkormann Exp $
  + * @version $Id: SVGBasicStroke.java,v 1.5 2001/03/14 00:52:44 vhardy Exp $
    */
   public class SVGBasicStroke extends AbstractSVGConverter{
       /**
  @@ -80,7 +80,7 @@
               dashArrayBuf.append(doubleString(dashArray[0]));
   
           for(int i=1; i<dashArray.length; i++){
  -            dashArrayBuf.append(SPACE);
  +            dashArrayBuf.append(COMMA);
               dashArrayBuf.append(doubleString(dashArray[i]));
           }
   
  
  
  

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