JavaDoc fixes

pull/158/head
Brett Wooldridge 11 years ago
parent 3f210301d3
commit afe61e51a5

@ -210,7 +210,7 @@ public final class HikariPool implements HikariPoolMBean, IBagStateListener
/**
* Release a connection back to the pool, or permanently close it if it is broken.
*
* @param connectionProxy the connection to release back to the pool
* @param bagEntry the PoolBagEntry to release back to the pool
* @param isBroken true if the connection was detected as broken
*/
public void releaseConnection(final PoolBagEntry bagEntry, final boolean isBroken)

@ -96,6 +96,8 @@ public final class ConcurrentBag<T extends BagEntry>
/**
* Construct a ConcurrentBag with the specified listener.
*
* @param listener the IBagStateListener to attach to this bag
*/
public ConcurrentBag(IBagStateListener listener)
{

@ -207,7 +207,7 @@ public final class HikariPool implements HikariPoolMBean, IBagStateListener
/**
* Release a connection back to the pool, or permanently close it if it is broken.
*
* @param connectionProxy the connection to release back to the pool
* @param bagEntry the PoolBagEntry to release back to the pool
* @param isBroken true if the connection was detected as broken
*/
public void releaseConnection(final PoolBagEntry bagEntry, final boolean isBroken)

@ -108,8 +108,7 @@ public abstract class ConnectionProxy implements IHikariConnectionProxy
executorService.schedule(leakTask, leakDetectionThreshold, TimeUnit.MILLISECONDS);
}
/** {@inheritDoc}
* @return */
/** {@inheritDoc} */
@Override
public final SQLException checkException(SQLException sqle)
{

@ -95,6 +95,8 @@ public final class ConcurrentBag<T extends BagEntry>
/**
* Construct a ConcurrentBag with the specified listener.
*
* @param listener the IBagStateListener to attach to this bag
*/
public ConcurrentBag(IBagStateListener listener)
{

Loading…
Cancel
Save