提交 fb30fccf authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Replace CHECK switch in SysProperties with Android check

上级 ebb7d972
...@@ -93,26 +93,19 @@ public class SysProperties { ...@@ -93,26 +93,19 @@ public class SysProperties {
Utils.getProperty("h2.bindAddress", null); Utils.getProperty("h2.bindAddress", null);
/** /**
* System property <code>h2.check</code> (default: true).<br /> * System property <code>h2.check</code>
* (default: true for JDK/JRE, false for Android).<br />
* Assertions in the database engine. * Assertions in the database engine.
*/ */
//## CHECK ##
public static final boolean CHECK = public static final boolean CHECK =
Utils.getProperty("h2.check", true); Utils.getProperty("h2.check", !"0.9".equals(Utils.getProperty("java.specification.version", null)));
/*/
public static final boolean CHECK = false;
//*/
/** /**
* System property <code>h2.check2</code> (default: false).<br /> * System property <code>h2.check2</code> (default: false).<br />
* Additional assertions in the database engine. * Additional assertions in the database engine.
*/ */
//## CHECK ##
public static final boolean CHECK2 = public static final boolean CHECK2 =
Utils.getProperty("h2.check2", false); Utils.getProperty("h2.check2", false);
/*/
public static final boolean CHECK2 = false;
//*/
/** /**
* System property <code>h2.clientTraceDirectory</code> (default: * System property <code>h2.clientTraceDirectory</code> (default:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论