Return-Path: X-Original-To: apmail-commons-notifications-archive@minotaur.apache.org Delivered-To: apmail-commons-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9F45F187FD for ; Sun, 31 May 2015 22:19:47 +0000 (UTC) Received: (qmail 47395 invoked by uid 500); 31 May 2015 22:19:47 -0000 Delivered-To: apmail-commons-notifications-archive@commons.apache.org Received: (qmail 47356 invoked by uid 500); 31 May 2015 22:19:47 -0000 Mailing-List: contact notifications-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list notifications@commons.apache.org Received: (qmail 47194 invoked by uid 99); 31 May 2015 22:19:47 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 31 May 2015 22:19:47 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 4376DAC0E2D for ; Sun, 31 May 2015 22:19:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r953348 [10/13] - in /websites/production/commons/content/proper/commons-pool: ./ apidocs/ apidocs/org/apache/commons/pool2/ apidocs/org/apache/commons/pool2/class-use/ apidocs/org/apache/commons/pool2/impl/ apidocs/org/apache/commons/pool2... Date: Sun, 31 May 2015 22:19:41 -0000 To: notifications@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150531221947.4376DAC0E2D@hades.apache.org> Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.PoolImplUtils.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.PoolImplUtils.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.PoolImplUtils.html Sun May 31 22:19:38 2015 @@ -242,6 +242,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.PooledSoftReference.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.PooledSoftReference.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.PooledSoftReference.html Sun May 31 22:19:38 2015 @@ -204,6 +204,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.SoftReferenceObjectPool.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.SoftReferenceObjectPool.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.impl.SoftReferenceObjectPool.html Sun May 31 22:19:38 2015 @@ -753,6 +753,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.BaseProxyHandler.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.BaseProxyHandler.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.BaseProxyHandler.html Sun May 31 22:19:38 2015 @@ -125,7 +125,7 @@
      */
 56  
     T getPooledObject() {
-  57  28
         return pooledObject;
+  57  26
         return pooledObject;
 58  
     }
 59   @@ -171,13 +171,13 @@
      */
 81  
     void validateProxiedObject() {
-  82  42
         if (pooledObject == null) {
-  83  14
             throw new IllegalStateException("This object may no longer be " +
+  82  34
         if (pooledObject == null) {
+  83  8
             throw new IllegalStateException("This object may no longer be " +
 84  
                     "used as it has been returned to the Object Pool.");
 85  
         }
-  86  28
     }
+  86  26
     }
 87  
 
 88   @@ -200,19 +200,19 @@
      */
 97  
     Object doInvoke(Method method, Object[] args) throws Throwable {
-  98  42
         validateProxiedObject();
-  99  28
         T object = getPooledObject();
-  100  28
         if (usageTracking != null) {
-  101  16
             usageTracking.use(object);
+  98  34
         validateProxiedObject();
+  99  26
         T object = getPooledObject();
+  100  26
         if (usageTracking != null) {
+  101  14
             usageTracking.use(object);
 102  
         }
-  103  27
         return method.invoke(object, args);
+  103  26
         return method.invoke(object, args);
 104  
     }
 105  
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.CglibProxyHandler.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.CglibProxyHandler.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.CglibProxyHandler.html Sun May 31 22:19:38 2015 @@ -117,13 +117,13 @@
     public Object intercept(Object object, Method method, Object[] args,
 51  
             MethodProxy methodProxy) throws Throwable {
-  52  25
         return doInvoke(method, args);
+  52  17
         return doInvoke(method, args);
 53  
     }
 54  
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.CglibProxySource.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.CglibProxySource.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.CglibProxySource.html Sun May 31 22:19:38 2015 @@ -144,6 +144,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.JdkProxyHandler.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.JdkProxyHandler.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.JdkProxyHandler.html Sun May 31 22:19:38 2015 @@ -122,6 +122,6 @@
 
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.JdkProxySource.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.JdkProxySource.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.JdkProxySource.html Sun May 31 22:19:38 2015 @@ -142,6 +142,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxiedKeyedObjectPool.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxiedKeyedObjectPool.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxiedKeyedObjectPool.html Sun May 31 22:19:38 2015 @@ -229,6 +229,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxiedObjectPool.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxiedObjectPool.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxiedObjectPool.html Sun May 31 22:19:38 2015 @@ -217,6 +217,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxySource.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxySource.html (original) +++ websites/production/commons/content/proper/commons-pool/cobertura/org.apache.commons.pool2.proxy.ProxySource.html Sun May 31 22:19:38 2015 @@ -121,6 +121,6 @@
 }
- + \ No newline at end of file Modified: websites/production/commons/content/proper/commons-pool/dependencies.html ============================================================================== --- websites/production/commons/content/proper/commons-pool/dependencies.html (original) +++ websites/production/commons/content/proper/commons-pool/dependencies.html Sun May 31 22:19:38 2015 @@ -1,13 +1,13 @@ - + Pool - Project Dependencies @@ -43,8 +43,8 @@ Apache Commons Pool ™