From da64d9956f14e2abb85562ce2be4d4be7e2d8ead Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Wed, 6 Feb 2013 20:20:49 -0500 Subject: [PATCH] remove silly warnings --- core/src/processing/core/PShapeSVG.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/processing/core/PShapeSVG.java b/core/src/processing/core/PShapeSVG.java index 74ff11fa3..ae7db1d11 100644 --- a/core/src/processing/core/PShapeSVG.java +++ b/core/src/processing/core/PShapeSVG.java @@ -407,7 +407,7 @@ public class PShapeSVG extends PShape { } else if (name.equals("sodipodi:namedview")) { // these are always in Inkscape files, the warnings get tedious - } else { + } else if (!name.startsWith("#")) { PGraphics.showWarning("Ignoring <" + name + "> tag."); // new Exception().printStackTrace(); }