checkstyle
[utils] / test / enterprise / src / main / java / org / wamblee / support / persistence / AbstractDatabase.java
index 5a084e06b41cb9bdd42ffd4e211ea2e0d7d70ad2..0fc871f1d4b9a6a2700a1fc22aee5580b8408fa2 100644 (file)
@@ -51,8 +51,13 @@ public abstract class AbstractDatabase implements Database {
         // constructed object at the connection pool.
         PoolableConnectionFactory poolableConnectionFactory = new PoolableConnectionFactory(
             connectionFactory, connectionPool, null, null, false, true);
+        ingoredVariable(poolableConnectionFactory);
         itsDataSource = new PoolingDataSource(connectionPool);
     }
+    
+    private static void ingoredVariable(PoolableConnectionFactory aFactory) {
+        // Empty
+    }
 
     // / BELOW THIS LINE IS NOT OF INTEREST TO SUBCLASSES.