Skip to content

Commit 3b67067

Browse files
committed
Remove unused variable
1 parent c146cb1 commit 3b67067

File tree

1 file changed

+0
-5
lines changed
  • tiles/src/main/java/com/protomaps/basemap/layers

1 file changed

+0
-5
lines changed

tiles/src/main/java/com/protomaps/basemap/layers/Water.java

-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public void processPreparedOsm(SourceFeature ignoredSf, FeatureCollector feature
3737
public void processNe(SourceFeature sf, FeatureCollector features) {
3838
var sourceLayer = sf.getSourceLayer();
3939
var kind = "";
40-
var themeMinZoom = 0;
4140
var themeMaxZoom = 0;
4241

4342
// Only process certain Natural Earth layers
@@ -46,16 +45,12 @@ public void processNe(SourceFeature sf, FeatureCollector features) {
4645
sourceLayer.equals("ne_10m_ocean") ||
4746
sourceLayer.equals("ne_10m_lakes")) {
4847
if (sourceLayer.equals("ne_50m_ocean")) {
49-
themeMinZoom = 0;
5048
themeMaxZoom = 4;
5149
} else if (sourceLayer.equals("ne_50m_lakes")) {
52-
themeMinZoom = 0;
5350
themeMaxZoom = 4;
5451
} else if (sourceLayer.equals("ne_10m_ocean")) {
55-
themeMinZoom = 5;
5652
themeMaxZoom = 5;
5753
} else if (sourceLayer.equals("ne_10m_lakes")) {
58-
themeMinZoom = 5;
5954
themeMaxZoom = 5;
6055
}
6156

0 commit comments

Comments
 (0)