提交 139bd7ca authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Use Utils.parseBoolean() in ConnectionInfo.getProperty()

上级 e82f9780
...@@ -334,15 +334,7 @@ public class ConnectionInfo implements Cloneable { ...@@ -334,15 +334,7 @@ public class ConnectionInfo implements Cloneable {
* @return the value * @return the value
*/ */
boolean getProperty(String key, boolean defaultValue) { boolean getProperty(String key, boolean defaultValue) {
String x = getProperty(key, null); return Utils.parseBoolean(getProperty(key, null), defaultValue, false);
if (x == null) {
return defaultValue;
}
// support 0 / 1 (like the parser)
if (x.length() == 1 && Character.isDigit(x.charAt(0))) {
return Integer.parseInt(x) != 0;
}
return Boolean.parseBoolean(x);
} }
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论