提交 8bcaad2a 编写于 作者: S serge-rider

URL template parser fix (trailing char)


Former-commit-id: 1218bb2a
上级 afddf224
...@@ -136,7 +136,7 @@ public class JDBCURL { ...@@ -136,7 +136,7 @@ public class JDBCURL {
} }
offsetPos = divPos2 + 1; offsetPos = divPos2 + 1;
} }
if (offsetPos < sampleURL.length() - 1) { if (offsetPos < sampleURL.length()) {
metaURL.urlComponents.add(sampleURL.substring(offsetPos)); metaURL.urlComponents.add(sampleURL.substring(offsetPos));
} }
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册