You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mi...@apache.org on 2009/09/16 23:13:13 UTC

svn commit: r815969 - /ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessConfImpl.java

Author: midon
Date: Wed Sep 16 21:13:12 2009
New Revision: 815969

URL: http://svn.apache.org/viewvc?rev=815969&view=rev
Log:
test the right the map

Modified:
    ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessConfImpl.java

Modified: ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessConfImpl.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessConfImpl.java?rev=815969&r1=815968&r2=815969&view=diff
==============================================================================
--- ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessConfImpl.java (original)
+++ ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessConfImpl.java Wed Sep 16 21:13:12 2009
@@ -386,7 +386,7 @@
         // do it manually to save resources (instead of using a thread)
         propertiesWatchDog.check();
         final Map prop = propertiesWatchDog.getObserver().get().getProperties(service, port);
-        if(!map.isEmpty() && __log.isDebugEnabled()) {
+        if(!prop.isEmpty() && __log.isDebugEnabled()) {
             StringBuilder msg = new StringBuilder("Properties for ");
             if(service!=null) msg.append("service ").append(service);
             if(port!=null) msg.append(", port ").append(port);