automatically ignore islands

This commit is contained in:
Arndt Brenschede 2018-04-02 19:19:52 +02:00
parent f2d04ef70a
commit 599a24f710
8 changed files with 203 additions and 23 deletions

View file

@ -110,7 +110,7 @@ public final class NodesCache
ghostSum = cacheSum;
}
public void cleanNonVirgin()
public void clean( boolean all )
{
for ( OsmFile[] fileRow : fileRows )
{
@ -118,7 +118,7 @@ public final class NodesCache
continue;
for ( OsmFile osmf : fileRow )
{
osmf.cleanNonVirgin();
osmf.clean( all);
}
}
}