Repository: commons-pool
Updated Branches:
  refs/heads/master 308127dff -> fca6c0ab2


Better param name.

Project: http://git-wip-us.apache.org/repos/asf/commons-pool/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-pool/commit/fca6c0ab
Tree: http://git-wip-us.apache.org/repos/asf/commons-pool/tree/fca6c0ab
Diff: http://git-wip-us.apache.org/repos/asf/commons-pool/diff/fca6c0ab

Branch: refs/heads/master
Commit: fca6c0ab2beadd6bb459e92fdbd575cd399144cd
Parents: 308127d
Author: Gary Gregory <[email protected]>
Authored: Sat May 26 09:58:32 2018 -0600
Committer: Gary Gregory <[email protected]>
Committed: Sat May 26 09:58:32 2018 -0600

----------------------------------------------------------------------
 src/main/java/org/apache/commons/pool2/impl/PoolImplUtils.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-pool/blob/fca6c0ab/src/main/java/org/apache/commons/pool2/impl/PoolImplUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/pool2/impl/PoolImplUtils.java 
b/src/main/java/org/apache/commons/pool2/impl/PoolImplUtils.java
index 67973d6..be4bbd8 100644
--- a/src/main/java/org/apache/commons/pool2/impl/PoolImplUtils.java
+++ b/src/main/java/org/apache/commons/pool2/impl/PoolImplUtils.java
@@ -32,13 +32,13 @@ class PoolImplUtils {
     /**
      * Identifies the concrete type of object that an object factory creates.
      *
-     * @param factory The factory to examine
+     * @param factoryClass The factory to examine
      *
      * @return the type of object the factory creates
      */
     @SuppressWarnings("rawtypes")
-    static Class<?> getFactoryType(final Class<? extends PooledObjectFactory> 
factory) {
-        return (Class<?>) getGenericType(PooledObjectFactory.class, factory);
+    static Class<?> getFactoryType(final Class<? extends PooledObjectFactory> 
factoryClass) {
+        return (Class<?>) getGenericType(PooledObjectFactory.class, 
factoryClass);
     }
 
 

Reply via email to