File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed 
src/main/kotlin/tools/jackson/module/kotlin Expand file tree Collapse file tree 1 file changed +3
-3
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 [ObjectReader.forType ]. 
160+  * Shorthand for [ObjectReader.readValue ]. 
161161 * @throws DatabindException 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  =  forType(jacksonTypeRef<T >()).readValue<T >(jp)
166166    .checkTypeMismatch()
167167/* *
168168 * Shorthand for [ObjectReader.readValues]. 
169169 * @throws DatabindException 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