Skip to content

Commit

Permalink
refactor: removed missed empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusWallin committed Mar 3, 2024
1 parent 72b84f4 commit 263f8e2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/com/esri/core/geometry/Geohash.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ public static String[] coveringGeohash(Envelope2D envelope) {
int gridMinLat = (int)Math.floor(ymin/grid);
int deltaLon = gridMaxLon - gridMinLon + 1;
int deltaLat = gridMaxLat - gridMinLat + 1;

String[] geoHashes = new String[deltaLon * deltaLat];

if (deltaLon * deltaLat > 4){
Expand Down

0 comments on commit 263f8e2

Please sign in to comment.