Fix build (java part incompatible with java 1.7)
This commit is contained in:
parent
5c63456b23
commit
a4d1ee15fb
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public class RoutingConfiguration {
|
|||
private String defaultRouter = "";
|
||||
private Map<String, GeneralRouter> routers = new LinkedHashMap<String, GeneralRouter>();
|
||||
private Map<String, String> attributes = new LinkedHashMap<String, String>();
|
||||
private HashMap<Long, Location> impassableRoadLocations = new HashMap<>();
|
||||
private HashMap<Long, Location> impassableRoadLocations = new HashMap<Long, Location>();
|
||||
private List<RouteDataObject> impassableRoads = new ArrayList<RouteDataObject>();
|
||||
|
||||
// Example
|
||||
|
|
Loading…
Reference in a new issue