Commit 916ad672 authored by Niklas-Stoehr's avatar Niklas-Stoehr
Browse files

-to string method changed

parent cacfc585
......@@ -408,8 +408,9 @@ public class PositionVector implements Location {
}
@Override
public String toString() {
return "PV("+getDimensions()+") " + Arrays.toString(values) + "";
public String toString() {
return "(" + values[0] + ", " + values[1] + ")";
//return "PV("+getDimensions()+") " + Arrays.toString(values) + "";
}
@Override
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment