[cleanup] adds 'final' keyword in RocketComponent.findComponent(...)
This commit is contained in:
parent
41c06572a7
commit
7c72f3a231
@ -1627,7 +1627,7 @@ public abstract class RocketComponent implements ChangeSource, Cloneable, Iterab
|
||||
checkState();
|
||||
Iterator<RocketComponent> iter = this.iterator(true);
|
||||
while (iter.hasNext()) {
|
||||
RocketComponent c = iter.next();
|
||||
final RocketComponent c = iter.next();
|
||||
if (c.getID().equals(idToFind))
|
||||
return c;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user