Author: coheigea
Date: Thu Oct 11 10:40:12 2012
New Revision: 1396980
URL: http://svn.apache.org/viewvc?rev=1396980&view=rev
Log:
Backmerging specific fix
Modified:
cxf/branches/2.6.x-fixes/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngineConfigurator.java
Modified:
cxf/branches/2.6.x-fixes/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngineConfigurator.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngineConfigurator.java?rev=1396980&r1=1396979&r2=1396980&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngineConfigurator.java
(original)
+++
cxf/branches/2.6.x-fixes/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngineConfigurator.java
Thu Oct 11 10:40:12 2012
@@ -201,7 +201,7 @@ final class AtomPushEngineConfigurator {
}
private <T extends Enum<T>> T parseEnum(String value, T defaultValue,
Class<T> enumClass) {
- if (value == null | "".equals(value)) {
+ if (value == null || "".equals(value)) {
return defaultValue;
}
try {