Merge pull request #350 from TheComputerGeek2/signutil
Avoid excessive indentation in SignUtil
This commit is contained in:
commit
a00254a0ef
@ -281,11 +281,9 @@ public class SignUtil
|
|||||||
for (Block block : blocks)
|
for (Block block : blocks)
|
||||||
{
|
{
|
||||||
List<String> lines = getLines(block);
|
List<String> lines = getLines(block);
|
||||||
if (lines != null)
|
if (lines == null) continue;
|
||||||
{
|
|
||||||
ret.addAll(lines);
|
ret.addAll(lines);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user