File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
ion/src/main/java/tools/jackson/dataformat/ion Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 15
15
package tools .jackson .dataformat .ion ;
16
16
17
17
import java .io .*;
18
- import java .net .URL ;
19
18
import java .nio .file .Path ;
20
19
21
20
import tools .jackson .core .*;
@@ -267,16 +266,6 @@ public JsonParser createParser(ObjectReadContext readCtxt,
267
266
_decorate (ioCtxt , in ));
268
267
}
269
268
270
- @ Deprecated // since 2.20
271
- @ Override
272
- public JsonParser createParser (ObjectReadContext readCtxt , URL url ) {
273
- // true, since we create InputStream from URL
274
- InputStream in = _optimizedStreamFromURL (url );
275
- IOContext ioCtxt = _createContext (_createContentReference (url ), true );
276
- return _createParser (readCtxt , ioCtxt ,
277
- _decorate (ioCtxt , in ));
278
- }
279
-
280
269
@ Override
281
270
public JsonParser createParser (ObjectReadContext readCtxt , InputStream in ) {
282
271
IOContext ioCtxt = _createContext (_createContentReference (in ), false );
You can’t perform that action at this time.
0 commit comments