INT-2996 Fix Class and Package Cycles
INT-2996 Fix Package Cycle Move interface ...store.MetadataStore to ...store.metadata. INT-2996 Fix Class Tangle TcpConnectionEvent incorrectly referenced the concrete TcpConnectionSupport instead of TcpConnection.
This commit is contained in:
@@ -44,7 +44,7 @@ public class TcpConnectionEvent extends ApplicationEvent {
|
||||
|
||||
private final Throwable throwable;
|
||||
|
||||
public TcpConnectionEvent(TcpConnectionSupport connection, EventType type,
|
||||
public TcpConnectionEvent(TcpConnection connection, EventType type,
|
||||
String connectionFactoryName) {
|
||||
super(connection);
|
||||
this.type = type;
|
||||
@@ -52,7 +52,7 @@ public class TcpConnectionEvent extends ApplicationEvent {
|
||||
this.connectionFactoryName = connectionFactoryName;
|
||||
}
|
||||
|
||||
public TcpConnectionEvent(TcpConnectionSupport connection, Throwable t,
|
||||
public TcpConnectionEvent(TcpConnection connection, Throwable t,
|
||||
String connectionFactoryName) {
|
||||
super(connection);
|
||||
this.type = TcpConnectionEventType.EXCEPTION;
|
||||
|
||||
Reference in New Issue
Block a user