Skip to content
Commits on Source (4)
mkgmap (0.0.0+svn4289-1) unstable; urgency=medium
* New upstream SVN snapshot.
-- Bas Couwenberg <sebastic@debian.org> Sun, 01 Sep 2019 08:44:09 +0200
mkgmap (0.0.0+svn4287-1) unstable; urgency=medium
* New upstream SVN snapshot.
......
svn.version: 4287
build.timestamp: 2019-06-05T14:49:17+0100
svn.version: 4289
build.timestamp: 2019-08-23T19:00:49+0100
......@@ -516,7 +516,7 @@ public class RestrictionRelation extends Relation {
for (Coord v: viaPoints){
CoordNode vn = nodeIdMap.get(v);
if (vn == null){
log.error(messagePrefix,"via node is not a routing node");
log.warn(messagePrefix,"via node is not a routing node, restriction relation is ignored");
return;
}
viaNodes.add(vn);
......
......@@ -508,7 +508,7 @@ public class PolishMapDataSource extends MapperBasedMapDataSource implements Loa
} else
nextPos = 10;
city = strings[nextPos];
if ("-1".equals(city)){
if (!"-1".equals(city)){
region = strings[nextPos + 1];
country = strings[nextPos + 2];
nums.setCityInfo(Numbers.RIGHT, createCityInfo(city, region, country));
......