Skip to content

Commit 13cf24d

Browse files
committed
warnings cleanup
1 parent bbbe53e commit 13cf24d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/util/TokenBuffer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2262,14 +2262,14 @@ private final void assignNativeIds(int index, Object objectId, Object typeId)
22622262
/**
22632263
* @since 2.3
22642264
*/
2265-
private Object findObjectId(int index) {
2265+
Object findObjectId(int index) {
22662266
return (_nativeIds == null) ? null : _nativeIds.get(_objectIdIndex(index));
22672267
}
22682268

22692269
/**
22702270
* @since 2.3
22712271
*/
2272-
private Object findTypeId(int index) {
2272+
Object findTypeId(int index) {
22732273
return (_nativeIds == null) ? null : _nativeIds.get(_typeIdIndex(index));
22742274
}
22752275

0 commit comments

Comments
 (0)