File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
cbor/src/main/java/com/fasterxml/jackson/dataformat/cbor Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1150,6 +1150,7 @@ public void writeNull() throws IOException {
1150
1150
* @param i Number value to write
1151
1151
* @throws IOException if there is either an underlying I/O problem or encoding
1152
1152
* issue at format layer
1153
+ * @since 2.20
1153
1154
*/
1154
1155
public void writeNumberUnsigned (int i ) throws IOException {
1155
1156
_verifyValueWrite ("write number unsigned" );
@@ -1205,6 +1206,7 @@ public void writeNumber(int i) throws IOException {
1205
1206
* @param l Number value to write
1206
1207
* @throws IOException if there is either an underlying I/O problem or encoding
1207
1208
* issue at format layer
1209
+ * @since 2.20
1208
1210
*/
1209
1211
public void writeNumberUnsigned (long l ) throws IOException {
1210
1212
if (_cfgMinimalInts && l >= 0 && l < 0x100000000L ) {
You can’t perform that action at this time.
0 commit comments