Edited DataExtractionOSM/src/net/osmand/osm/Way.java via GitHub
This commit is contained in:
parent
a500d0a4f4
commit
6c908b967e
1 changed files with 2 additions and 2 deletions
|
@ -88,11 +88,11 @@ public class Way extends Entity {
|
|||
} else {
|
||||
nodes.clear();
|
||||
}
|
||||
for (int i = 0; i < nodeIds.size(); i++) {
|
||||
int nIsize = nodeIds.size();
|
||||
for (int i = 0; i < nIsize; i++) {
|
||||
nodes.add((Node) entities.get(new EntityId(EntityType.NODE,nodeIds.get(i))));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue