Skip to content
Snippets Groups Projects
Commit 2e6361f1 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

Merge branch 'region' into 'master'

Region toString error

See merge request !90
parents 32b0458a 7e339844
No related branches found
No related tags found
1 merge request!90Region toString error
Pipeline #10557 passed
...@@ -335,7 +335,7 @@ public class Region implements Named { ...@@ -335,7 +335,7 @@ public class Region implements Named {
@Override @Override
public String toString() { public String toString() {
Bounds b = bounds(); Bounds b = bounds();
String str = "Region\n" + "\tMinLat: " + b.min.longitude + "\n" + "\tMinLon: " + String str = "Region\n" + "\tMinLat: " + b.min.latitude + "\n" + "\tMinLon: " +
b.min.longitude + "\n" + "\tMaxLat: " + b.max.latitude + "\n" + "\tMaxLon: " + b.min.longitude + "\n" + "\tMaxLat: " + b.max.latitude + "\n" + "\tMaxLon: " +
b.max.longitude; b.max.longitude;
return str; return str;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment