Return-Path: Delivered-To: apmail-xml-batik-dev-archive@xml.apache.org Received: (qmail 29487 invoked by uid 500); 8 Mar 2002 17:31:44 -0000 Mailing-List: contact batik-dev-help@xml.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: batik-dev@xml.apache.org Delivered-To: mailing list batik-dev@xml.apache.org Received: (qmail 29476 invoked by uid 500); 8 Mar 2002 17:31:43 -0000 Delivered-To: apmail-xml-batik-cvs@apache.org Date: 8 Mar 2002 17:31:43 -0000 Message-ID: <20020308173143.430.qmail@icarus.apache.org> From: tkormann@apache.org To: xml-batik-cvs@apache.org Subject: cvs commit: xml-batik/sources/org/apache/batik/apps/rasterizer SVGConverter.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N tkormann 02/03/08 09:31:43 Modified: sources/org/apache/batik/apps/rasterizer SVGConverter.java Log: workaround the regression we have with rasterizer. My code was not a bug just that regard detected the change and I was not able to find where the tests have to fixed. Revision Changes Path 1.10 +4 -2 xml-batik/sources/org/apache/batik/apps/rasterizer/SVGConverter.java Index: SVGConverter.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/apps/rasterizer/SVGConverter.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- SVGConverter.java 7 Mar 2002 09:02:56 -0000 1.9 +++ SVGConverter.java 8 Mar 2002 17:31:43 -0000 1.10 @@ -80,7 +80,7 @@ *
  • pixelToMillimeter: defines the size of a pixel when processing the SVG documents.
  • * * - * @version $Id: SVGConverter.java,v 1.9 2002/03/07 09:02:56 tkormann Exp $ + * @version $Id: SVGConverter.java,v 1.10 2002/03/08 17:31:43 tkormann Exp $ * @author Henri Ruini * @author Vincent Hardy */ @@ -729,7 +729,9 @@ } // Set onload - map.put(ImageTranscoder.KEY_EXECUTE_ONLOAD, new Boolean(executeOnload)); + if (executeOnload) { + map.put(ImageTranscoder.KEY_EXECUTE_ONLOAD, new Boolean(executeOnload)); + } return map; } --------------------------------------------------------------------- To unsubscribe, e-mail: batik-dev-unsubscribe@xml.apache.org For additional commands, e-mail: batik-dev-help@xml.apache.org