remove test code

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1831754 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2018-05-17 05:35:58 +00:00
parent f35e818fa2
commit 508e6da4e5

View 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) {