We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 933caca commit aabcbc3Copy full SHA for aabcbc3
dubbo-rpc/dubbo-rpc-api/src/main/java/com/alibaba/dubbo/rpc/listener/ListenerInvokerWrapper.java
@@ -76,7 +76,7 @@ public Result invoke(Invocation invocation) throws RpcException {
76
77
@Override
78
public String toString() {
79
- return getInterface() + " -> " + getUrl() == null ? " " : getUrl().toString();
+ return getInterface() + " -> " + (getUrl() == null ? " " : getUrl().toString());
80
}
81
82
public void destroy() {
@@ -97,4 +97,4 @@ public void destroy() {
97
98
99
100
-}
+}
0 commit comments