Fixed typos.

This commit is contained in:
Tobias Ottenweller 2013-05-19 10:39:23 +02:00
parent a9be1eaa51
commit 6bd53a3fe6
2 changed files with 3 additions and 3 deletions

View File

@ -166,8 +166,8 @@ public class GatesManager
private void addGateByLocations(Gate g)
{
for (Location c : g.getGateBlockLocations()) {
SimpleLocation sl = new SimpleLocation(c);
for (Location l : g.getGateBlockLocations()) {
SimpleLocation sl = new SimpleLocation(l);
gatesByLocation.put(sl, g);
}
}