We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f63c1ed commit 6c7d53cCopy full SHA for 6c7d53c
1 file changed
spring-rabbit/src/main/java/org/springframework/amqp/rabbit/connection/SimpleConnection.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2002-2019 the original author or authors.
+ * Copyright 2002-2022 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -152,7 +152,7 @@ public com.rabbitmq.client.Connection getDelegate() {
152
public String toString() {
153
return "SimpleConnection@"
154
+ ObjectUtils.getIdentityHexString(this)
155
- + " [delegate=" + this.delegate + ", localPort= " + getLocalPort() + "]";
+ + " [delegate=" + this.delegate + ", localPort=" + getLocalPort() + "]";
156
}
157
158
0 commit comments