Skip to content
Commits on Source (4)
mkgmap (0.0.0+svn4289-2) UNRELEASED; urgency=medium
mkgmap (0.0.0+svn4294-1) unstable; urgency=medium
* New upstream SVN snapshot.
* Bump Standards-Version to 4.4.1, no changes.
-- Bas Couwenberg <sebastic@debian.org> Mon, 30 Sep 2019 19:26:00 +0200
-- Bas Couwenberg <sebastic@debian.org> Tue, 01 Oct 2019 05:55:11 +0200
mkgmap (0.0.0+svn4289-1) unstable; urgency=medium
......
svn.version: 4289
build.timestamp: 2019-08-23T19:00:49+0100
svn.version: 4294
build.timestamp: 2019-09-28T07:25:58+0100
......@@ -40,8 +40,6 @@ highway=via_ferrata {delete highway} # this shouldn't show as routable on defau
highway=piste | highway=ski {delete highway}
highway=no | highway=none {delete highway}
# Hide unaccessible tunnels
highway=* & tunnel=yes & (access=private | access=no) & foot!=* & bicycle!=* {delete highway; delete junction}
# Disable dead-end-checks for unaccessible oneways
highway=* & oneway=yes & (access=private | access=no) {add mkgmap:dead-end-check=false}
# Validation-like checks (uncomment to enable)
......
......@@ -129,10 +129,10 @@ public class ExpressionReader {
if (result != null) {
AndOp and = new AndOp();
and.setFirst(result);
and.setSecond(ops[0]);
and.setSecond(ops[0].copy());
result = and;
} else
result = ops[0];
result = ops[0].copy();
}
return result;
......