1
0

Fix dumb double-test. Thanks to Dennis Lundberg for pointing this out.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@394560 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Kitching
2006-04-16 21:20:21 +00:00
parent 1f32b55765
commit 21d9e3c157

View File

@@ -1426,7 +1426,6 @@ public abstract class LogFactory {
} }
if (newPriority > priority) { if (newPriority > priority) {
if (isDiagnosticsEnabled()) {
if (isDiagnosticsEnabled()) { if (isDiagnosticsEnabled()) {
logDiagnostic( logDiagnostic(
"[LOOKUP] Properties file at '" + url + "'" "[LOOKUP] Properties file at '" + url + "'"
@@ -1434,7 +1433,6 @@ public abstract class LogFactory {
+ " overrides file at '" + propsUrl + "'" + " overrides file at '" + propsUrl + "'"
+ " with priority " + priority); + " with priority " + priority);
} }
}
propsUrl = url; propsUrl = url;
props = newProps; props = newProps;