You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2006/11/15 00:58:31 UTC

svn commit: r475066 - /incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessStoreImpl.java

Author: mriou
Date: Tue Nov 14 15:58:30 2006
New Revision: 475066

URL: http://svn.apache.org/viewvc?view=rev&rev=475066
Log:
YAFSOP

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

Modified: incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessStoreImpl.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessStoreImpl.java?view=diff&rev=475066&r1=475065&r2=475066
==============================================================================
--- incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessStoreImpl.java (original)
+++ incubator/ode/trunk/bpel-store/src/main/java/org/apache/ode/store/ProcessStoreImpl.java Tue Nov 14 15:58:30 2006
@@ -242,14 +242,12 @@
                     HashMap<QName, byte[]> result = new HashMap<QName, byte[]>(procs.size());
                     for (ProcessConfDAO confDAO : procs) {
                         QName processId = confDAO.getProcessId();
-                        System.out.println("### Process " + processId + " is active.");
                         if (_deploymentUnits.get(processId) == null) {
                             __log.error("The process " + processId + " appears to exist in the database but no " +
                                     "deployment exists in the file system. Please undeploy it properly.");
                             continue;
                         }
                         OProcess oprocess = _deploymentUnits.get(processId).getProcesses().get(processId);
-                        System.out.println("### Process " + processId + " has oprocess " + oprocess + " serializing to " + serialize(oprocess));
                         result.put(processId, serialize(oprocess));
                     }
                     return result;