You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by de...@apache.org on 2013/02/06 22:19:39 UTC

svn commit: r1443213 - /uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/ServiceStatistics.java

Author: degenaro
Date: Wed Feb  6 21:19:39 2013
New Revision: 1443213

URL: http://svn.apache.org/viewvc?rev=1443213&view=rev
Log:
UIMA-2631 Fix Java compiler warning

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/ServiceStatistics.java

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/ServiceStatistics.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/ServiceStatistics.java?rev=1443213&r1=1443212&r2=1443213&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/ServiceStatistics.java (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/ServiceStatistics.java Wed Feb  6 21:19:39 2013
@@ -5,7 +5,8 @@ import java.io.Serializable;
 public class  ServiceStatistics
     implements Serializable
 {
-    private boolean alive = false;
+	private static final long serialVersionUID = 1L;
+	private boolean alive = false;
     private boolean healthy = false;
     private String info = "N/A";
     private String errorString = null;