bugfix for restriction-splitting

This commit is contained in:
Arndt Brenschede 2019-09-28 21:28:12 +02:00
parent cc78f68069
commit 231f55c64d
2 changed files with 4 additions and 2 deletions

View file

@ -82,7 +82,5 @@ public class OsmFastCutter extends MapCreatorBase
wayCut5.process( nodeDir, wayDir, way55Dir, borderFile ); wayCut5.process( nodeDir, wayDir, way55Dir, borderFile );
wayCut5.restrictionCutter5.finish();
} }
} }

View file

@ -174,6 +174,10 @@ public class WayCutter5 extends MapCreatorBase
{ {
nodeCutter.nodeFileEnd( null ); nodeCutter.nodeFileEnd( null );
} }
if ( restrictionCutter5 != null )
{
restrictionCutter5.finish();
}
} }
public int getTileIndexForNid( long nid ) public int getTileIndexForNid( long nid )