DATADOC-162 fixed formatting in toString method

This commit is contained in:
Thomas Risberg
2011-06-10 09:01:48 -04:00
parent 8ac2ff6b81
commit fa094eef25

View File

@@ -88,6 +88,6 @@ public class Point {
@Override
public String toString() {
return String.format("Point [latitude=%d, longitude=%d]", x, y);
return String.format("Point [latitude=%f, longitude=%f]", x, y);
}
}