1.3.2 preparations

This commit is contained in:
Arndt 2015-11-01 11:55:28 +01:00
parent 644a5ece80
commit 02bb5675db
8 changed files with 29 additions and 18 deletions

View file

@ -46,7 +46,7 @@ public class WayCutter5 extends MapCreatorBase
}
@Override
public void wayFileStart( File wayfile ) throws Exception
public boolean wayFileStart( File wayfile ) throws Exception
{
// read corresponding node-file into tileIndexMap
String name = wayfile.getName();
@ -57,6 +57,7 @@ public class WayCutter5 extends MapCreatorBase
lonoffset = -1;
latoffset = -1;
new NodeIterator( this, false ).processFile( nodefile );
return true;
}
@Override