Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public boolean isFailed() {
* during normal bridging operations.
*
* @param connection
* The connection that was in use when the failure occured.
* The connection that was in use when the failure occurred.
*/
void handleConnectionFailure(Connection connection) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public interface TransportListener {
*/
void onCommand(Object command);
/**
* An unrecoverable exception has occured on the transport
* An unrecoverable exception has occurred on the transport
* @param error
*/
void onException(IOException error);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ public void connectionClosed(ConnectionEvent event) {
try {
((ManagedConnection)event.getSource()).cleanup();
} catch (ResourceException e) {
LOG.warn("Error occured during the cleanup of a managed connection: ", e);
LOG.warn("Error occurred during the cleanup of a managed connection: ", e);
}
try {
((ManagedConnection)event.getSource()).destroy();
} catch (ResourceException e) {
LOG.warn("Error occured during the destruction of a managed connection: ", e);
LOG.warn("Error occurred during the destruction of a managed connection: ", e);
}
}

Expand Down Expand Up @@ -93,12 +93,12 @@ public void connectionErrorOccurred(ConnectionEvent event) {
try {
((ManagedConnection)event.getSource()).cleanup();
} catch (ResourceException e) {
LOG.warn("Error occured during the cleanup of a managed connection: ", e);
LOG.warn("Error occurred during the cleanup of a managed connection: ", e);
}
try {
((ManagedConnection)event.getSource()).destroy();
} catch (ResourceException e) {
LOG.warn("Error occured during the destruction of a managed connection: ", e);
LOG.warn("Error occurred during the destruction of a managed connection: ", e);
}
}

Expand Down