Remove redundant if

This commit is contained in:
jkmcl 2022-07-01 00:39:46 +08:00 committed by Oleg Kalnichevski
parent 9b63f12b8a
commit 8d9b52abd1
1 changed files with 1 additions and 3 deletions

View File

@ -97,9 +97,7 @@ public class DefaultAuthenticationStrategy implements AuthenticationStrategy {
authPrefs = DEFAULT_SCHEME_PRIORITY;
}
if (LOG.isDebugEnabled()) {
if (LOG.isDebugEnabled()) {
LOG.debug("{} Authentication schemes in the order of preference: {}", exchangeId, authPrefs);
}
LOG.debug("{} Authentication schemes in the order of preference: {}", exchangeId, authPrefs);
}
for (final String schemeName: authPrefs) {