Avoid excessive indentation in SignUtil
Better complies with our formatting standards.
This commit is contained in:
parent
11add07090
commit
d360f6d814
@ -281,10 +281,8 @@ public class SignUtil
|
||||
for (Block block : blocks)
|
||||
{
|
||||
List<String> lines = getLines(block);
|
||||
if (lines != null)
|
||||
{
|
||||
ret.addAll(lines);
|
||||
}
|
||||
if (lines == null) continue;
|
||||
ret.addAll(lines);
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user