Skip to content

Commit 49491e5

Browse files
committed
Fix up @SInCE and remove TODO
JAVA-3567
1 parent 346a5e0 commit 49491e5

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed

bson-record-codec/src/main/org/bson/codecs/record/RecordCodecProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Provides Codec instances for Java records.
2525
*
26-
* @since 4.XXXXX
26+
* @since 4.6
2727
* @see Record
2828
*/
2929
public final class RecordCodecProvider implements CodecProvider {

bson-record-codec/src/main/org/bson/codecs/record/annotations/BsonId.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* An annotation that configures the record component as the _id field of the document
2727
*
28-
* @since 4.XXX
28+
* @since 4.6
2929
*/
3030
@Documented
3131
@Retention(RetentionPolicy.RUNTIME)

bson-record-codec/src/main/org/bson/codecs/record/annotations/BsonProperty.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* An annotation that configures a record component.
2727
*
28-
* @since 4.XXX
28+
* @since 4.6
2929
*/
3030
@Documented
3131
@Target({ElementType.RECORD_COMPONENT})
@@ -37,11 +37,4 @@
3737
* @return the field name to use for the record component
3838
*/
3939
String value() default "";
40-
41-
// /**
42-
// * TODO: is this needed? If so, needs to be tested and implemented
43-
// *
44-
// * @return whether to include a discriminator when serializing nested records.
45-
// */
46-
// boolean useDiscriminator() default false;
4740
}

bson-record-codec/src/main/org/bson/codecs/record/annotations/BsonRepresentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* An annotation that specifies what type the record component is stored as in the database.
2929
*
30-
* @since 4.XXX
30+
* @since 4.6
3131
*/
3232
@Documented
3333
@Retention(RetentionPolicy.RUNTIME)

0 commit comments

Comments
 (0)