Skip to content

Commit 36106b5

Browse files
feeblefakiejnmt
andauthored
Backport to branch(3.10) : Fix GetBuilder and ScanBuilder (#2361)
Co-authored-by: Jun Nemoto <[email protected]>
1 parent b5f61c9 commit 36106b5

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

core/src/main/java/com/scalar/db/api/ScanBuilder.java

+2-12
Original file line numberDiff line numberDiff line change
@@ -954,21 +954,11 @@ public static class BuildableScanFromExistingWithOngoingWhere
954954
implements And<BuildableScanFromExistingWithOngoingWhereAnd>,
955955
Or<BuildableScanFromExistingWithOngoingWhereOr> {
956956

957-
private BuildableScanFromExistingWithOngoingWhere(
958-
BuildableScanOrScanAllFromExisting buildable) {
959-
super(buildable);
960-
}
961-
962957
private BuildableScanFromExistingWithOngoingWhere(
963958
BuildableScanOrScanAllFromExisting buildable, ConditionalExpression condition) {
964959
super(buildable, condition);
965960
}
966961

967-
private BuildableScanFromExistingWithOngoingWhere(
968-
BuildableScanFromExistingWithOngoingWhere buildable) {
969-
super(buildable);
970-
}
971-
972962
@Override
973963
public BuildableScanFromExistingWithOngoingWhereAnd and(ConditionalExpression condition) {
974964
checkNotNull(condition);
@@ -999,7 +989,7 @@ public BuildableScanFromExistingWithOngoingWhereOr or(AndConditionSet andConditi
999989
}
1000990

1001991
public static class BuildableScanFromExistingWithOngoingWhereOr
1002-
extends BuildableScanFromExistingWithOngoingWhere
992+
extends BuildableScanFromExistingWithWhere
1003993
implements Or<BuildableScanFromExistingWithOngoingWhereOr> {
1004994

1005995
private BuildableScanFromExistingWithOngoingWhereOr(
@@ -1029,7 +1019,7 @@ public BuildableScanFromExistingWithOngoingWhereOr or(AndConditionSet andConditi
10291019
}
10301020

10311021
public static class BuildableScanFromExistingWithOngoingWhereAnd
1032-
extends BuildableScanFromExistingWithOngoingWhere
1022+
extends BuildableScanFromExistingWithWhere
10331023
implements And<BuildableScanFromExistingWithOngoingWhereAnd> {
10341024

10351025
private BuildableScanFromExistingWithOngoingWhereAnd(

0 commit comments

Comments
 (0)