You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Geodesk silently accepts Box.ofWSEN calls with nonsensical latitude values. Example:
Box.ofWSEN(-10, -100, 10, 100);
I would prefer to receive an IllegalArgumentException. Instead, the invalid parameter is just set to 0. In this example, this results in an empty bbox. In general, this can make the error harder to find (in my case, it was swapped latitude and longitude values).