Fixing som e typos.
Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/dc308ab8 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/dc308ab8 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/dc308ab8 Branch: refs/heads/activemq-5.9 Commit: dc308ab8f2a80da498337fd3a82737086e47e9c7 Parents: dece1fc Author: Hiram Chirino <[email protected]> Authored: Mon Nov 18 10:23:36 2013 -0500 Committer: Hadrian Zbarcea <[email protected]> Committed: Wed Mar 12 12:09:52 2014 -0400 ---------------------------------------------------------------------- .../org/apache/activemq/ra/ActiveMQManagedConnection.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/dc308ab8/activemq-ra/src/main/java/org/apache/activemq/ra/ActiveMQManagedConnection.java ---------------------------------------------------------------------- diff --git a/activemq-ra/src/main/java/org/apache/activemq/ra/ActiveMQManagedConnection.java b/activemq-ra/src/main/java/org/apache/activemq/ra/ActiveMQManagedConnection.java index 571fbf3..f8caf09 100755 --- a/activemq-ra/src/main/java/org/apache/activemq/ra/ActiveMQManagedConnection.java +++ b/activemq-ra/src/main/java/org/apache/activemq/ra/ActiveMQManagedConnection.java @@ -196,7 +196,7 @@ public class ActiveMQManagedConnection implements ManagedConnection, ExceptionLi * @see javax.resource.spi.ManagedConnection#destroy() */ public void destroy() throws ResourceException { - // Have we allready been destroyed?? + // Have we already been destroyed?? if (isDestroyed()) { return; } @@ -207,7 +207,7 @@ public class ActiveMQManagedConnection implements ManagedConnection, ExceptionLi physicalConnection.close(); destroyed = true; } catch (JMSException e) { - LOG.info("Error occured during close of a JMS connection.", e); + LOG.info("Error occurred during close of a JMS connection.", e); } } @@ -219,7 +219,7 @@ public class ActiveMQManagedConnection implements ManagedConnection, ExceptionLi */ public void cleanup() throws ResourceException { - // Have we allready been destroyed?? + // Have we already been destroyed?? if (isDestroyed()) { return; } @@ -368,7 +368,7 @@ public class ActiveMQManagedConnection implements ManagedConnection, ExceptionLi } /** - * When a proxy is closed this cleans up the proxy and notifys the + * When a proxy is closed this cleans up the proxy and notifies the * ConnectionEventListeners that a connection closed. * * @param proxy @@ -386,7 +386,7 @@ public class ActiveMQManagedConnection implements ManagedConnection, ExceptionLi for (ManagedConnectionProxy proxy:proxyConnections) { proxy.onException(e); } - // Let the container know that the error occured. + // Let the container know that the error occurred. fireErrorOccurredEvent(e); }
