1.5.0 preparations

This commit is contained in:
Arndt Brenschede 2019-06-30 17:34:21 +02:00
parent af6956f4f5
commit f9f08cc0b7
22 changed files with 57 additions and 52 deletions

View file

@ -5,7 +5,7 @@
<parent>
<groupId>org.btools</groupId>
<artifactId>brouter</artifactId>
<version>1.4.11</version>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>brouter-mapaccess</artifactId>

View file

@ -49,7 +49,7 @@ public final class NodesCache
private long ghostSum = 0;
private long ghostWakeup = 0;
private boolean directWeaving = Boolean.getBoolean( "directWeaving" );
private boolean directWeaving = !Boolean.getBoolean( "disableDirectWeaving" );
public String formatStatus()
{

View file

@ -73,7 +73,7 @@ public final class OsmNodesMap
}
catch( StackOverflowError soe )
{
System.out.println( "+++++++++++++++ StackOverflowError ++++++++++++++++" );
// System.out.println( "+++++++++++++++ StackOverflowError ++++++++++++++++" );
}
}
}
@ -196,7 +196,6 @@ public final class OsmNodesMap
{
nodesCreated=0;
System.out.println( "collectOutreachers, currentMaxCost=" + currentMaxCost );
ArrayList<OsmNode> nodes2check = new ArrayList<OsmNode>();
for( OsmNode n : hmap.values() )
{