File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/kotlin/com/fasterxml/jackson/module/kotlin Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -157,18 +157,18 @@ inline fun <reified T> ObjectMapper.convertValue(from: Any?): T = convertValue(f
157157 .checkTypeMismatch()
158158
159159/* *
160- * Shorthand for [ObjectMapper .readValue].
160+ * Shorthand for [ObjectReader .readValue].
161161 * @throws RuntimeJsonMappingException Especially if [T] is non-null and the value read is null.
162162 * Other cases where the read value is of a different type than [T]
163- * due to an incorrect customization to [ObjectMapper ].
163+ * due to an incorrect customization to [ObjectReader ].
164164 */
165165inline fun <reified T > ObjectReader.readValueTyped (jp : JsonParser ): T = readValue(jp, jacksonTypeRef<T >())
166166 .checkTypeMismatch()
167167/* *
168- * Shorthand for [ObjectMapper .readValues].
168+ * Shorthand for [ObjectReader .readValues].
169169 * @throws RuntimeJsonMappingException Especially if [T] is non-null and the value read is null.
170170 * Other cases where the read value is of a different type than [T]
171- * due to an incorrect customization to [ObjectMapper ].
171+ * due to an incorrect customization to [ObjectReader ].
172172 */
173173inline fun <reified T > ObjectReader.readValuesTyped (jp : JsonParser ): Iterator <T > {
174174 val values = readValues(jp, jacksonTypeRef<T >())
You can’t perform that action at this time.
0 commit comments