Skip to content

Commit

Permalink
Merge pull request #515 from afischerdev/misc-pbfparser
Browse files Browse the repository at this point in the history
Use an interface call in pbfparser lib
  • Loading branch information
afischerdev committed Mar 22, 2023
2 parents fc22892 + b304789 commit a75ee2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/pbfparser/OsmParser.java
Expand Up @@ -91,7 +91,7 @@ public void readMap(File mapFile,

public void addNode(long nid, Map<String, String> tags, double lat, double lon) {
NodeData n = new NodeData(nid, lon, lat);
n.setTags((HashMap<String, String>) tags);
n.setTags(tags);
try {
nListener.nextNode(n);
} catch (Exception e) {
Expand Down

0 comments on commit a75ee2b

Please sign in to comment.