Rename getInfo -> getInformation.

This commit is contained in:
Mikael Capelle
2018-03-01 13:35:11 +01:00
parent 875a0c8518
commit a51e16c3dd
4 changed files with 5 additions and 5 deletions

View File

@@ -82,7 +82,7 @@ public class WeaklyConnectedComponentsAlgorithm extends AbstractAlgorithm<Weakly
for (Node node: getInstance().getGraph().getNodes()) {
for (Arc arc: node.getSuccessors()) {
res.get(node.getId()).add(arc.getDestination().getId());
if (arc.getInfo().isOneWay()) {
if (arc.getRoadInformation().isOneWay()) {
res.get(arc.getDestination().getId()).add(node.getId());
}
}