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