Skip to content

Commit f781bca

Browse files
committed
Make internal AbstractClientUpdateModel, AbstractClientDeleteModel public
JAVA-5527
1 parent dbb6ec8 commit f781bca

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

driver-core/src/main/com/mongodb/internal/client/model/bulk/AbstractClientDeleteModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* This class is not part of the public API and may be removed or changed at any time.
2424
*/
25-
abstract class AbstractClientDeleteModel implements ClientWriteModel {
25+
public abstract class AbstractClientDeleteModel implements ClientWriteModel {
2626
private final Bson filter;
2727
private final ConcreteClientDeleteOptions options;
2828

driver-core/src/main/com/mongodb/internal/client/model/bulk/AbstractClientUpdateModel.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@
2424
import static com.mongodb.assertions.Assertions.assertTrue;
2525
import static java.util.Optional.ofNullable;
2626

27-
abstract class AbstractClientUpdateModel {
27+
/**
28+
* This class is not part of the public API and may be removed or changed at any time.
29+
*/
30+
public abstract class AbstractClientUpdateModel {
2831
private final Bson filter;
2932
@Nullable
3033
private final Bson update;

0 commit comments

Comments
 (0)