Avoid excessive indentation in SignUtil

Better complies with our formatting standards.
This commit is contained in:
TheComputerGeek2 2018-05-06 21:53:04 -07:00
parent 11add07090
commit d360f6d814

View File

@ -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;
} }