diff --git a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/BAttributeCoordinates.java b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/BAttributeCoordinates.java index 2aeb359d027bd32783119b814a50786e7f8c476b..193d963f3be639fc568ca7d4339a0f80181a67d5 100644 --- a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/BAttributeCoordinates.java +++ b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/attribute/BAttributeCoordinates.java @@ -27,12 +27,9 @@ public class BAttributeCoordinates extends AbstractAttribute { Point point = (Point) element; StringBuffer buf = new StringBuffer(); buf.append("["); - if (point.x >= 0) - buf.append(point.x); - if (point.y >= 0) { - buf.append(", "); - buf.append(point.y); - } + buf.append(point.x); + buf.append(", "); + buf.append(point.y); buf.append("]"); return buf.toString(); }