Changed access to use this qualifier

This commit is contained in:
yueh
2014-12-29 15:13:47 +01:00
parent 2a5e57a59b
commit f471513bd0
604 changed files with 11573 additions and 11573 deletions
@@ -29,31 +29,31 @@ public class ReadOnlyCollection<T> implements IReadOnlyCollection<T>
private final Collection<T> c;
public ReadOnlyCollection(Collection<T> in) {
c = in;
this.c = in;
}
@Override
public Iterator<T> iterator()
{
return c.iterator();
return this.c.iterator();
}
@Override
public int size()
{
return c.size();
return this.c.size();
}
@Override
public boolean isEmpty()
{
return c.isEmpty();
return this.c.isEmpty();
}
@Override
public boolean contains(Object node)
{
return c.contains( node );
return this.c.contains( node );
}
}