Skip to content

Commit cd297a1

Browse files
authored
Correct Scaladoc references to methods and classes that were producing warnings. (#1463)
1 parent 14fc2fa commit cd297a1

9 files changed

+16
-16
lines changed

driver-scala/src/main/scala/org/mongodb/scala/AggregateObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ case class AggregateObservable[TResult](private val wrapped: AggregatePublisher[
202202
/**
203203
* Sets the timeoutMode for the cursor.
204204
*
205-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
205+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
206206
* via [[MongoDatabase]] or via [[MongoCollection]]
207207
*
208208
* If the `timeout` is set then:

driver-scala/src/main/scala/org/mongodb/scala/DistinctObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case class DistinctObservable[TResult](private val wrapped: DistinctPublisher[TR
114114
/**
115115
* Sets the timeoutMode for the cursor.
116116
*
117-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
117+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
118118
* via [[MongoDatabase]] or via [[MongoCollection]]
119119
*
120120
* @param timeoutMode the timeout mode

driver-scala/src/main/scala/org/mongodb/scala/FindObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ case class FindObservable[TResult](private val wrapped: FindPublisher[TResult])
336336
/**
337337
* Sets the timeoutMode for the cursor.
338338
*
339-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
339+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
340340
* via [[MongoDatabase]] or via [[MongoCollection]]
341341
*
342342
* If the `timeout` is set then:

driver-scala/src/main/scala/org/mongodb/scala/ListCollectionsObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ case class ListCollectionsObservable[TResult](wrapped: ListCollectionsPublisher[
9999
/**
100100
* Sets the timeoutMode for the cursor.
101101
*
102-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
102+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
103103
* via [[MongoDatabase]] or via [[MongoCollection]]
104104
*
105105
* @param timeoutMode the timeout mode

driver-scala/src/main/scala/org/mongodb/scala/ListDatabasesObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ case class ListDatabasesObservable[TResult](wrapped: ListDatabasesPublisher[TRes
128128
/**
129129
* Sets the timeoutMode for the cursor.
130130
*
131-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
131+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
132132
* via [[MongoDatabase]] or via [[MongoCollection]]
133133
*
134134
* @param timeoutMode the timeout mode

driver-scala/src/main/scala/org/mongodb/scala/ListIndexesObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ case class ListIndexesObservable[TResult](wrapped: ListIndexesPublisher[TResult]
8686
/**
8787
* Sets the timeoutMode for the cursor.
8888
*
89-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
89+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
9090
* via [[MongoDatabase]] or via [[MongoCollection]]
9191
*
9292
* @param timeoutMode the timeout mode

driver-scala/src/main/scala/org/mongodb/scala/ListSearchIndexesObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ case class ListSearchIndexesObservable[TResult](wrapped: ListSearchIndexesPublis
126126
/**
127127
* Sets the timeoutMode for the cursor.
128128
*
129-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
129+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
130130
* via [[MongoDatabase]] or via [[MongoCollection]]
131131
*
132132
* If the `timeout` is set then:

driver-scala/src/main/scala/org/mongodb/scala/MapReduceObservable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ case class MapReduceObservable[TResult](wrapped: MapReducePublisher[TResult]) ex
225225
/**
226226
* Sets the timeoutMode for the cursor.
227227
*
228-
* Requires the `timeout` to be set, either in the [[com.mongodb.MongoClientSettings]],
228+
* Requires the `timeout` to be set, either in the [[MongoClientSettings]],
229229
* via [[MongoDatabase]] or via [[MongoCollection]]
230230
*
231231
* @param timeoutMode the timeout mode

driver-scala/src/main/scala/org/mongodb/scala/gridfs/GridFSBucket.scala

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
183183
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
184184
*
185185
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
186-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
186+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
187187
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
188188
*
189189
* @param filename the filename for the stream
@@ -201,7 +201,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
201201
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
202202
*
203203
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
204-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
204+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
205205
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
206206
*
207207
* @param filename the filename for the stream
@@ -224,7 +224,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
224224
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
225225
*
226226
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
227-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
227+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
228228
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
229229
*
230230
* @param id the custom id value of the file
@@ -247,7 +247,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
247247
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
248248
*
249249
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
250-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
250+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
251251
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
252252
*
253253
* @param id the custom id value of the file
@@ -272,7 +272,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
272272
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
273273
*
274274
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
275-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
275+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
276276
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
277277
*
278278
* @param clientSession the client session with which to associate this operation
@@ -296,7 +296,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
296296
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
297297
*
298298
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
299-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
299+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
300300
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
301301
*
302302
* @param clientSession the client session with which to associate this operation
@@ -322,7 +322,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
322322
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
323323
*
324324
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
325-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
325+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
326326
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
327327
*
328328
* @param clientSession the client session with which to associate this operation
@@ -348,7 +348,7 @@ case class GridFSBucket(private val wrapped: JGridFSBucket) {
348348
* chunks have been uploaded, it creates a files collection document for `filename` in the files collection.
349349
*
350350
* Note: When this [[GridFSBucket]] is set with a operation timeout (via timeout inherited from [[MongoDatabase]]
351-
* settings or [[GridFSBucket#withTimeout()]]), timeout breaches may occur due to the [[Observable]]
351+
* settings or [[withTimeout]]), timeout breaches may occur due to the [[Observable]]
352352
* lacking inherent read timeout support, which might extend the operation beyond the specified timeout limit.
353353
*
354354
* @param clientSession the client session with which to associate this operation

0 commit comments

Comments
 (0)