You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hu...@apache.org on 2018/03/28 07:00:05 UTC

[incubator-dubbo] branch master updated: comments in URL class is incorrect (#1520)

This is an automated email from the ASF dual-hosted git repository.

huxing 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 05da804  comments in URL class is incorrect (#1520)
05da804 is described below

commit 05da8040e88ef5c9a544cb9dddf4c6abee6bd61a
Author: GavinCook <sw...@gmail.com>
AuthorDate: Wed Mar 28 15:00:00 2018 +0800

    comments in URL class is incorrect (#1520)
---
 dubbo-common/src/main/java/com/alibaba/dubbo/common/URL.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dubbo-common/src/main/java/com/alibaba/dubbo/common/URL.java b/dubbo-common/src/main/java/com/alibaba/dubbo/common/URL.java
index eb5c144..cb8e92b 100644
--- a/dubbo-common/src/main/java/com/alibaba/dubbo/common/URL.java
+++ b/dubbo-common/src/main/java/com/alibaba/dubbo/common/URL.java
@@ -52,7 +52,7 @@ import java.util.concurrent.ConcurrentHashMap;
  * <li>192.168.1.3:20880<br>
  * for this case, url protocol = null, url host = 192.168.1.3, port = 20880, url path = null
  * <li>file:///home/user1/router.js?type=script<br>
- * for this case, url protocol = null, url host = null, url path = home/user1/router.js
+ * for this case, url protocol = file, url host = null, url path = home/user1/router.js
  * <li>file://home/user1/router.js?type=script<br>
  * for this case, url protocol = file, url host = home, url path = user1/router.js
  * <li>file:///D:/1/router.js?type=script<br>

-- 
To stop receiving notification emails like this one, please contact
huxing@apache.org.