You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/04/25 22:37:00 UTC

svn commit: r1096590 - /commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java

Author: simonetripodi
Date: Mon Apr 25 20:36:59 2011
New Revision: 1096590

URL: http://svn.apache.org/viewvc?rev=1096590&view=rev
Log:
added missing @Override annotations

Modified:
    commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java

Modified: commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java?rev=1096590&r1=1096589&r2=1096590&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java (original)
+++ commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java Mon Apr 25 20:36:59 2011
@@ -1032,6 +1032,7 @@ public class TestGenericObjectPool exten
             public TimeTest() {
                 createTime = System.currentTimeMillis();
             }
+            @Override
             public TimeTest makeObject() throws Exception {
                 return new TimeTest();
             }
@@ -1242,6 +1243,7 @@ public class TestGenericObjectPool exten
             this.borrow = borrow;
         }
 
+        @Override
         public void run() {
             try {
                 if (borrow) {