Avoid excessive indentation in SignUtil
Better complies with our formatting standards.
This commit is contained in:
parent
11add07090
commit
d360f6d814
@ -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