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

Avoid synthetic access

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