Repository: activemq Updated Branches: refs/heads/trunk 878e3a16c -> 7ceb4d0c8
https://issues.apache.org/jira/browse/AMQ-5224 Fix some JavaDocs Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/9ae22642 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/9ae22642 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/9ae22642 Branch: refs/heads/trunk Commit: 9ae22642dc14ef70563b858a9359ab47c69ebeda Parents: 878e3a1 Author: Timothy Bish <[email protected]> Authored: Fri Jun 13 11:09:56 2014 -0400 Committer: Timothy Bish <[email protected]> Committed: Fri Jun 13 11:09:56 2014 -0400 ---------------------------------------------------------------------- .../apache/activemq/jms/pool/PooledConnectionFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/9ae22642/activemq-jms-pool/src/main/java/org/apache/activemq/jms/pool/PooledConnectionFactory.java ---------------------------------------------------------------------- diff --git a/activemq-jms-pool/src/main/java/org/apache/activemq/jms/pool/PooledConnectionFactory.java b/activemq-jms-pool/src/main/java/org/apache/activemq/jms/pool/PooledConnectionFactory.java index e60c52b..8bc7bcc 100644 --- a/activemq-jms-pool/src/main/java/org/apache/activemq/jms/pool/PooledConnectionFactory.java +++ b/activemq-jms-pool/src/main/java/org/apache/activemq/jms/pool/PooledConnectionFactory.java @@ -161,7 +161,7 @@ public class PooledConnectionFactory implements ConnectionFactory { * <p/> * Updates to this value do not affect Connections that were previously created and placed * into the pool. In order to allocate new Connections based off this new ConnectionFactory - * it is first necessary to {@link clear} the pooled Connections. + * it is first necessary to {@link #clear} the pooled Connections. * * @param toUse * The factory to use to create pooled Connections. @@ -290,7 +290,7 @@ public class PooledConnectionFactory implements ConnectionFactory { /** * Clears all connections from the pool. Each connection that is currently in the pool is * closed and removed from the pool. A new connection will be created on the next call to - * {@link createConnection}. Care should be taken when using this method as Connections that + * {@link #createConnection}. Care should be taken when using this method as Connections that * are in use be client's will be closed. */ public void clear() { @@ -352,7 +352,7 @@ public class PooledConnectionFactory implements ConnectionFactory { /** * Returns the maximum number to pooled Connections that this factory will allow before it - * begins to return connections from the pool on calls to ({@link createConnection}. + * begins to return connections from the pool on calls to ({@link #createConnection}. * * @return the maxConnections that will be created for this pool. */ @@ -362,7 +362,7 @@ public class PooledConnectionFactory implements ConnectionFactory { /** * Sets the maximum number of pooled Connections (defaults to one). Each call to - * {@link createConnection} will result in a new Connection being create up to the max + * {@link #createConnection} will result in a new Connection being create up to the max * connections value. * * @param maxConnections the maxConnections to set
