removed possible NPE

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@373809 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-01-31 12:33:44 +00:00
parent c6f73c56d1
commit 2ae7169856
1 changed files with 3 additions and 1 deletions

View File

@ -99,8 +99,10 @@ public class FailoverTransport implements CompositeTransport {
}
}
if (transportListener != null) {
transportListener.onCommand(command);
}
}
public void onException(IOException error) {
try {