You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2009/09/10 15:38:02 UTC

svn commit: r813430 - /incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/VinciTAP.java

Author: cwiklik
Date: Thu Sep 10 13:38:02 2009
New Revision: 813430

URL: http://svn.apache.org/viewvc?rev=813430&view=rev
Log:
UIMA-1560 Replace String.valueOf("10") with just a string constant "10"

Modified:
    incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/VinciTAP.java

Modified: incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/VinciTAP.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/VinciTAP.java?rev=813430&r1=813429&r2=813430&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/VinciTAP.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/VinciTAP.java Thu Sep 10 13:38:02 2009
@@ -1340,7 +1340,7 @@
                     CPMUtils.CPM_LOG_RESOURCE_BUNDLE,
                     "UIMA_CPM_waiting_for_service_shutdown__FINEST",
                     new Object[] { Thread.currentThread().getName(), String.valueOf(10 - retry),
-                        String.valueOf(10) });
+                        "10" });
           }
           Thread.sleep(100); // wait for 100ms to give the service time to exit cleanly
           if (UIMAFramework.getLogger().isLoggable(Level.FINEST)) {