File tree 1 file changed +3
-1
lines changed
src/main/java/com/fasterxml/jackson/dataformat/xml 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -393,6 +393,7 @@ public MatchStrength hasFormat(InputAccessor acc) throws IOException {
393
393
* have no working mechanism for recycling buffers. So we have to
394
394
* admit that can not make efficient use.
395
395
*/
396
+ @ Override
396
397
public boolean canUseCharArrays () { return false ; }
397
398
398
399
/*
@@ -407,7 +408,8 @@ public MatchStrength hasFormat(InputAccessor acc) throws IOException {
407
408
* that temporary buffer gets recycled; so let's just use StringReader.
408
409
*/
409
410
@ SuppressWarnings ("resource" )
410
- public JsonParser createParser (String content ) throws IOException , JsonParseException {
411
+ @ Override
412
+ public JsonParser createParser (String content ) throws IOException {
411
413
Reader r = new StringReader (content );
412
414
IOContext ctxt = _createContext (r , true );
413
415
if (_inputDecorator != null ) {
You can’t perform that action at this time.
0 commit comments