提交 7f0b8aa8 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Avoid synthetic access

上级 29d9bf45
...@@ -149,7 +149,7 @@ public class MVTableEngine implements TableEngine { ...@@ -149,7 +149,7 @@ public class MVTableEngine implements TableEngine {
* @param builder the builder * @param builder the builder
* @param encrypted whether the store is encrypted * @param encrypted whether the store is encrypted
*/ */
private void open(Database db, MVStore.Builder builder, boolean encrypted) { void open(Database db, MVStore.Builder builder, boolean encrypted) {
this.encrypted = encrypted; this.encrypted = encrypted;
try { try {
this.store = builder.open(); this.store = builder.open();
......
...@@ -35,7 +35,7 @@ public class VersionedValue { ...@@ -35,7 +35,7 @@ public class VersionedValue {
return new Uncommitted(operationId, value, committedValue); return new Uncommitted(operationId, value, committedValue);
} }
private VersionedValue(Object value) { VersionedValue(Object value) {
this.value = value; this.value = value;
} }
......
...@@ -39,7 +39,7 @@ public class TestMvccMultiThreaded2 extends TestBase { ...@@ -39,7 +39,7 @@ public class TestMvccMultiThreaded2 extends TestBase {
test.test(); test.test();
} }
private int getTestDuration() { int getTestDuration() {
// to save some testing time // to save some testing time
return config.big ? TEST_TIME_SECONDS : TEST_TIME_SECONDS / 10; return config.big ? TEST_TIME_SECONDS : TEST_TIME_SECONDS / 10;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论