提交 4a32ce2f 编写于 作者: D ding.lid

ExtensionLoader的Service文件中允许有注释

git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@34 1a56cb94-b969-4eaa-88fa-be21384802f2
上级 2b276964
......@@ -247,6 +247,8 @@ public class ExtensionLoader<T> {
try {
String line = null;
while ((line = reader.readLine()) != null) {
final int ci = line.indexOf('#');
if (ci >= 0) line = line.substring(0, ci);
line = line.trim();
if (line.length() > 0) {
try {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册