Skip to content

Commit 6c7d53c

Browse files
Remove extra space in SimpleConnection.toString()
1 parent f63c1ed commit 6c7d53c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spring-rabbit/src/main/java/org/springframework/amqp/rabbit/connection/SimpleConnection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -152,7 +152,7 @@ public com.rabbitmq.client.Connection getDelegate() {
152152
public String toString() {
153153
return "SimpleConnection@"
154154
+ ObjectUtils.getIdentityHexString(this)
155-
+ " [delegate=" + this.delegate + ", localPort= " + getLocalPort() + "]";
155+
+ " [delegate=" + this.delegate + ", localPort=" + getLocalPort() + "]";
156156
}
157157

158158
}

0 commit comments

Comments
 (0)