This is an automated email from the ASF dual-hosted git repository.
carryxyh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git
The following commit(s) were added to refs/heads/master by this push:
new a35f942 'continue' statement is unnecessary as the last statement in
a loop (#3046)
a35f942 is described below
commit a35f9420fb13d37e7a136e47ea0bfe5a4cf83550
Author: Sergio Escalante <[email protected]>
AuthorDate: Sun Dec 23 23:18:09 2018 -0300
'continue' statement is unnecessary as the last statement in a loop (#3046)
'continue' statement is unnecessary as the last statement in a loop
---
dubbo-common/src/main/java/org/apache/dubbo/common/Version.java | 1 -
1 file changed, 1 deletion(-)
diff --git a/dubbo-common/src/main/java/org/apache/dubbo/common/Version.java
b/dubbo-common/src/main/java/org/apache/dubbo/common/Version.java
index 5c0ab76..9e5893f 100644
--- a/dubbo-common/src/main/java/org/apache/dubbo/common/Version.java
+++ b/dubbo-common/src/main/java/org/apache/dubbo/common/Version.java
@@ -104,7 +104,6 @@ public final class Version {
} else {
index = i;
}
- continue;
} else {
index = i;
break;