Skip to content

Commit 9984267

Browse files
authored
Sync with core/1463 (#605)
1 parent 2c2bc97 commit 9984267

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

ion/src/main/java/tools/jackson/dataformat/ion/IonFactory.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package tools.jackson.dataformat.ion;
1616

1717
import java.io.*;
18-
import java.net.URL;
1918
import java.nio.file.Path;
2019

2120
import tools.jackson.core.*;
@@ -267,16 +266,6 @@ public JsonParser createParser(ObjectReadContext readCtxt,
267266
_decorate(ioCtxt, in));
268267
}
269268

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-
280269
@Override
281270
public JsonParser createParser(ObjectReadContext readCtxt, InputStream in) {
282271
IOContext ioCtxt = _createContext(_createContentReference(in), false);

0 commit comments

Comments
 (0)