You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mr...@apache.org on 2011/03/02 23:30:17 UTC

svn commit: r1076440 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/concurrent/test/TTLObjectTest.java

Author: mrisaliti
Date: Wed Mar  2 22:30:17 2011
New Revision: 1076440

URL: http://svn.apache.org/viewvc?rev=1076440&view=rev
Log:
Remove unused variable in TTLObjectTest (OFBIZ-4102)

Modified:
    ofbiz/trunk/framework/base/src/org/ofbiz/base/concurrent/test/TTLObjectTest.java

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/concurrent/test/TTLObjectTest.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/concurrent/test/TTLObjectTest.java?rev=1076440&r1=1076439&r2=1076440&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/concurrent/test/TTLObjectTest.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/concurrent/test/TTLObjectTest.java Wed Mar  2 22:30:17 2011
@@ -81,7 +81,7 @@ public abstract class TTLObjectTest exte
     protected void assertGetObject(String label, String wantedData, int wantedDoneCount, long minTime, long maxTime) throws Exception {
         long t1 = System.nanoTime();
         assertEquals(label + ": data", wantedData, object.getObject());
-        int serial = object.getSerial();
+        object.getSerial();
         assertEquals(label + ": doneCount", wantedDoneCount, doneCount.get());
         long t2 = System.nanoTime();
         long time = t2 - t1;