Removed inline comments

This commit is contained in:
atomicint
2016-01-22 15:55:40 -05:00
parent 637a18d155
commit 5156e0bc19
2 changed files with 0 additions and 7 deletions
@@ -52,7 +52,6 @@ public final class MobRepository<T extends Mob> implements Iterable<T> {
public boolean hasNext() {
int index = current;
// return true iff there is a non-null element within the repository
while (index <= repository.size()) {
Mob mob = repository.mobs[index++];
if (mob != null) {