repair call to interface, pmd conform

This commit is contained in:
afischerdev 2023-03-22 18:25:37 +01:00
parent fc22892a66
commit b304789e43

View file

@ -91,7 +91,7 @@ public class OsmParser extends MapCreatorBase {
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) {