Skip to content
Snippets Groups Projects
Commit 2353984d authored by brinn's avatar brinn
Browse files

fix: check style warnings

SVN: 7469
parent d61d87dc
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,7 @@ public class FilteredCollection<E> extends AbstractCollectionDecorator<E> ...@@ -80,7 +80,7 @@ public class FilteredCollection<E> extends AbstractCollectionDecorator<E>
{ {
return null; return null;
} }
for (final Iterator<? extends E> iter = collection.iterator(); iter.hasNext();) for (final Iterator<? extends E> iter = collection.iterator(); iter.hasNext(); )
{ {
if (validator.isValid(iter.next()) == false) if (validator.isValid(iter.next()) == false)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment