Skip to content

Commit

Permalink
Add missing final modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed May 5, 2019
1 parent 9eb9879 commit 26a2353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/dev/osm/mapsplit/SplitTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private void checkMetadata(int min, int max) throws MBTilesReadException {
try {
r = new MBTilesReader(new File(MSF_OUTPUT_FILENAME));
MetadataEntry md = r.getMetadata();
Map<String, String> required = new HashMap<>();
final Map<String, String> required = new HashMap<>();
md.getRequiredKeyValuePairs().forEach(new Consumer<Entry<String, String>>() {

@Override
Expand All @@ -123,7 +123,7 @@ public void accept(Entry<String, String> e) {
}

});
Map<String, String> custom = new HashMap<>();
final Map<String, String> custom = new HashMap<>();
md.getCustomKeyValuePairs().forEach(new Consumer<Entry<String, String>>() {

@Override
Expand Down

0 comments on commit 26a2353

Please sign in to comment.