Kill redundant conditional in BootstrapCheck#check

This commit removes an unnecessary if statement in Bootstrap#check. The
removed if statement was duplicating the conditionals in the nested if
statements and was merely an artifact of an earlier refactoring.
This commit is contained in:
Jason Tedor 2016-05-02 12:22:40 -04:00
parent 226679c606
commit 15f33e61b7
1 changed files with 12 additions and 15 deletions

View File

@ -114,8 +114,6 @@ final class BootstrapCheck {
}
}
if (!errors.isEmpty() || !ignoredErrors.isEmpty()) {
if (!ignoredErrors.isEmpty()) {
ignoredErrors.forEach(error -> log(logger, error));
}
@ -130,7 +128,6 @@ final class BootstrapCheck {
}
}
}
static void log(final ESLogger logger, final String error) {
logger.warn(error);