Merge pull request #350 from TheComputerGeek2/signutil

Avoid excessive indentation in SignUtil
This commit is contained in:
Magnus Ulf Jørgensen 2018-05-15 09:37:13 +02:00 committed by GitHub
commit a00254a0ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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