@@ -1224,17 +1224,17 @@ public <T> T readValue(File f) throws JacksonException
1224
1224
* Value return is either newly constructed, or root value that
1225
1225
* was specified with {@link #withValueToUpdate(Object)}.
1226
1226
*
1227
- * @param p Path that contains content to read
1227
+ * @param path Path that contains content to read
1228
1228
*
1229
1229
* @since 3.0
1230
1230
*/
1231
1231
@ SuppressWarnings ("unchecked" )
1232
- public <T > T readValue (Path p ) throws JacksonException
1232
+ public <T > T readValue (Path path ) throws JacksonException
1233
1233
{
1234
- _assertNotNull ("p " , p );
1234
+ _assertNotNull ("path " , path );
1235
1235
DeserializationContextExt ctxt = _deserializationContext ();
1236
1236
return (T ) _bindAndClose (ctxt ,
1237
- _considerFilter (_parserFactory .createParser (ctxt , p ), false ));
1237
+ _considerFilter (_parserFactory .createParser (ctxt , path ), false ));
1238
1238
}
1239
1239
1240
1240
/**
@@ -1749,9 +1749,9 @@ protected InputStream _inputStream(File f) throws JacksonException {
1749
1749
}
1750
1750
}
1751
1751
1752
- protected InputStream _inputStream (Path p ) throws JacksonException {
1752
+ protected InputStream _inputStream (Path path ) throws JacksonException {
1753
1753
try {
1754
- return Files .newInputStream (p );
1754
+ return Files .newInputStream (path );
1755
1755
} catch (IOException e ) {
1756
1756
throw WrappedIOException .construct (e );
1757
1757
}
0 commit comments