Skip to content

Commit e5d2f98

Browse files
committed
Add since version to methods javadoc
1 parent f19cbd4 commit e5d2f98

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cbor/src/main/java/com/fasterxml/jackson/dataformat/cbor/CBORGenerator.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,6 +1150,7 @@ public void writeNull() throws IOException {
11501150
* @param i Number value to write
11511151
* @throws IOException if there is either an underlying I/O problem or encoding
11521152
* issue at format layer
1153+
* @since 2.20
11531154
*/
11541155
public void writeNumberUnsigned(int i) throws IOException {
11551156
_verifyValueWrite("write number unsigned");
@@ -1205,6 +1206,7 @@ public void writeNumber(int i) throws IOException {
12051206
* @param l Number value to write
12061207
* @throws IOException if there is either an underlying I/O problem or encoding
12071208
* issue at format layer
1209+
* @since 2.20
12081210
*/
12091211
public void writeNumberUnsigned(long l) throws IOException {
12101212
if (_cfgMinimalInts && l >= 0 && l < 0x100000000L) {

0 commit comments

Comments
 (0)