File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
src/main/kotlin/tools/jackson/module/kotlin Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,6 @@ inline fun <reified T> ObjectMapper.readValues(jp: JsonParser): MappingIterator<
101101 * due to an incorrect customization to [ObjectMapper].
102102 */
103103inline fun <reified T > ObjectMapper.readValue (src : File ): T = readValue(src, jacksonTypeRef<T >()).checkTypeMismatch()
104- /* *
105- * Shorthand for [ObjectMapper.readValue].
106- * @throws DatabindException Especially if [T] is non-null and the value read is null.
107- * Other cases where the read value is of a different type than [T]
108- * due to an incorrect customization to [ObjectMapper].
109- */
110- inline fun <reified T > ObjectMapper.readValue (src : URL ): T = readValue(src, jacksonTypeRef<T >()).checkTypeMismatch()
111104/* *
112105 * Shorthand for [ObjectMapper.readValue].
113106 * @throws DatabindException Especially if [T] is non-null and the value read is null.
You can’t perform that action at this time.
0 commit comments