Skip to content

Commit d0dfa2b

Browse files
committed
Post-merge fixes
1 parent fc05d29 commit d0dfa2b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

driver-core/src/main/com/mongodb/client/model/search/InSearchOperator.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,13 @@
1818
import com.mongodb.annotations.Beta;
1919
import com.mongodb.annotations.Reason;
2020
import com.mongodb.annotations.Sealed;
21-
22-
import java.util.UUID;
21+
import org.bson.types.ObjectId;
2322

2423
import java.time.Instant;
25-
26-
import org.bson.types.ObjectId;
24+
import java.util.UUID;
2725

2826
/**
29-
* @see SearchOperator#in(FieldSearchPath, Boolean, Boolean...)
27+
* @see SearchOperator#in(FieldSearchPath, boolean, boolean...)
3028
* @see SearchOperator#in(FieldSearchPath, ObjectId, ObjectId...)
3129
* @see SearchOperator#in(FieldSearchPath, Number, Number...)
3230
* @see SearchOperator#in(FieldSearchPath, Instant, Instant...)

driver-core/src/main/com/mongodb/client/model/search/SearchOperator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ static InSearchOperator in(final FieldSearchPath path, final String value, final
395395
*
396396
* @param path The indexed field to be searched.
397397
* @param values The non-empty values to search for. Value can be either a single value or an array of values of only one of the supported BSON types and can't be a mix of different types.
398+
* @param <T> the type.
398399
* @return The requested {@link SearchOperator}.
399400
* @mongodb.atlas.manual atlas-search/in/ in operator
400401
*/

0 commit comments

Comments
 (0)