Skip to content

Commit

Permalink
fix(tnc): correct order of IPC arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ansoncfit committed Mar 28, 2019
1 parent 76ff66c commit eba3a95
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public boolean resolve (TransportNetwork network) {
// Polygon will only be fetched from S3 once when the scenario is resolved, then after application the
// resulting network is cached. Subsequent uses of this same modification should not re-trigger S3 fetches.
try {
polygons = new IndexedPolygonCollection(polygonLayer, nameAttribute, waitTimeAttribute, priorityAttribute, defaultWait);
polygons = new IndexedPolygonCollection(polygonLayer, waitTimeAttribute, nameAttribute, priorityAttribute,
defaultWait);
polygons.loadFromS3GeoJson();
// Collect any errors from the IndexedPolygonCollection construction, so they can be seen in the UI.
errors.addAll(polygons.getErrors());
Expand Down

0 comments on commit eba3a95

Please sign in to comment.