Skip to content

Commit d10c777

Browse files
committed
docs: update several deprecated comments
1 parent 58c6763 commit d10c777

30 files changed

+55
-55
lines changed

src/main/com/mongodb/DBCollection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1394,7 +1394,7 @@ protected DBCollection( DB base , String name ){
13941394

13951395
/**
13961396
* @deprecated This method should not be a part of API.
1397-
* If you overriding one of the {@code DBCollection} methods please rely on superclass
1397+
* If you override one of the {@code DBCollection} methods please rely on superclass
13981398
* implementation in checking argument correctness and validity.
13991399
*/
14001400
@Deprecated

src/main/com/mongodb/DBPort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* Methods implemented at the port level should throw the raw exceptions like IOException,
5454
* so that the connector above can make appropriate decisions on how to handle.
5555
*
56-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
56+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
5757
*/
5858
@Deprecated
5959
public class DBPort {

src/main/com/mongodb/DBPortPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
/**
3737
* This class is NOT part of the public API. Be prepared for non-binary compatible changes in minor releases.
3838
*
39-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
39+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
4040
*/
4141
@Deprecated
4242
public class DBPortPool extends SimplePool<DBPort> {

src/main/com/mongodb/Mongo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ public String getVersion(){
426426
* returns a string representing the hosts used in this Mongo instance
427427
* @return
428428
*
429-
* @deprecated This method is NOT a part of public API and will be propped in 3.x versions.
429+
* @deprecated This method is NOT a part of public API and will be dropped in 3.x versions.
430430
*/
431431
@Deprecated
432432
public String debugString(){

src/main/com/mongodb/RawDBObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
/**
5656
* This object wraps the binary object format ("BSON") used for the transport of serialized objects to / from the Mongo database.
5757
*
58-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
58+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
5959
*/
6060
@Deprecated
6161
public class RawDBObject implements DBObject {

src/main/com/mongodb/io/ByteBufferFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
import java.nio.ByteBuffer;
2222

2323
/**
24-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
24+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
2525
*/
2626
@Deprecated
2727
public interface ByteBufferFactory {
2828
public ByteBuffer get();
2929

3030
/**
31-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
31+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
3232
*/
3333
@Deprecated
3434
public static class SimpleHeapByteBufferFactory implements ByteBufferFactory {

src/main/com/mongodb/io/ByteBufferHolder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.List;
2424

2525
/**
26-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
26+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
2727
*/
2828
@Deprecated
2929
public class ByteBufferHolder {

src/main/com/mongodb/io/ByteBufferInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.List;
2424

2525
/**
26-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
26+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
2727
*/
2828
@Deprecated
2929
public class ByteBufferInputStream extends InputStream {

src/main/com/mongodb/io/ByteBufferOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.util.List;
2525

2626
/**
27-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
27+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
2828
*/
2929
@Deprecated
3030
public class ByteBufferOutputStream extends OutputStream {

src/main/com/mongodb/io/ByteStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.nio.ByteBuffer;
2222

2323
/**
24-
* @deprecated This class is NOT a part of public API and will be propped in 3.x versions.
24+
* @deprecated This class is NOT a part of public API and will be dropped in 3.x versions.
2525
*/
2626
@Deprecated
2727
public interface ByteStream {

0 commit comments

Comments
 (0)