]> source.dussan.org Git - poi.git/commitdiff
remove test code
authorAndreas Beeker <kiwiwings@apache.org>
Thu, 17 May 2018 05:35:58 +0000 (05:35 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Thu, 17 May 2018 05:35:58 +0000 (05:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1831754 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/sl/draw/DrawShape.java

index 9a10ad1db2c260b96c865a98cf328a7cb5e0e6d0..807d2e59ba75772d91949b2199f865109a21621a 100644 (file)
@@ -65,15 +65,6 @@ public class DrawShape implements Drawable {
 
         final Rectangle2D anchor = getAnchor(graphics, ps);
 
-        if (shape.getShapeName().startsWith("rotate")) {
-            System.out.println(String.format("%s x: %.3f y: %.3f cx: %.3f cy: %.3f / x: %.3f y: %.3f cx: %.3f cy: %.3f ",
-                shape.getShapeName(), shape.getAnchor().getX(), shape.getAnchor().getY(),
-                shape.getAnchor().getWidth(), shape.getAnchor().getHeight(),
-                    anchor.getX(), anchor.getY(), anchor.getWidth(), anchor.getHeight()
-            ));
-        }
-
-
         char cmds[] = isHSLF ? new char[]{ 'h','v','r' } : new char[]{ 'r','h','v' };
         for (char ch : cmds) {
             switch (ch) {