Author: burn
Date: Tue Oct  6 17:59:48 2015
New Revision: 1707109

URL: http://svn.apache.org/viewvc?rev=1707109&view=rev
Log:
UIMA-4598 remove debugging stmt

Modified:
    
uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/user/jp/UimaProcessContainer.java

Modified: 
uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/user/jp/UimaProcessContainer.java
URL: 
http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/user/jp/UimaProcessContainer.java?rev=1707109&r1=1707108&r2=1707109&view=diff
==============================================================================
--- 
uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/user/jp/UimaProcessContainer.java
 (original)
+++ 
uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/user/jp/UimaProcessContainer.java
 Tue Oct  6 17:59:48 2015
@@ -421,13 +421,10 @@ public class UimaProcessContainer extend
                        List<AnalysisEnginePerformanceMetrics> 
afterAnalysisManagementObjects,
                        List<AnalysisEnginePerformanceMetrics> 
beforeAnalysisManagementObjects)
                        throws Exception {
-               // Create a List to hold per CAS analysisTime and total number 
of CASes
-               // processed
-               // by each AE. This list will be serialized and sent to the 
client
+               // Create a List to hold per CAS analysisTime and total number 
of CASes processed by each AE. 
+           // This list will be serialized and sent to the client
                List<AnalysisEnginePerformanceMetrics> performanceList = new 
ArrayList<AnalysisEnginePerformanceMetrics>();
-               // Diff the before process() performance metrics with post 
process
-               // performance
-               // metrics
+               // Diff the before process() performance metrics with post 
process performance metrics
                for (AnalysisEnginePerformanceMetrics after : 
afterAnalysisManagementObjects) {
                        for (AnalysisEnginePerformanceMetrics before : 
beforeAnalysisManagementObjects) {
                                String uniqueName = after.getUniqueName();
@@ -441,7 +438,7 @@ public class UimaProcessContainer extend
                                                }
                                        }
                                        */
-                                       
System.out.println("getAEMetricsForCAS() - Unique Name:"+uniqueName);
+                                       
//System.out.println("getAEMetricsForCAS() - Unique Name:"+uniqueName);
                                        //String uniqueName =  
                                        AnalysisEnginePerformanceMetrics 
metrics = new AnalysisEnginePerformanceMetrics(
                                                        after.getName(), 
uniqueName,


Reply via email to