Skip to content
Snippets Groups Projects
Commit 70c4e692 authored by brinn's avatar brinn
Browse files

minor: style fixes

SVN: 6595
parent 17241bed
No related merge requests found
......@@ -110,12 +110,12 @@ public final class StringUtils
{
return null;
}
if (!iterator.hasNext())
if (iterator.hasNext() == false)
{
return EMPTY;
}
Object first = iterator.next();
if (!iterator.hasNext())
if (iterator.hasNext() == false)
{
return toString(first);
}
......
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