This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit d773f8591691251ab005ea1ad88fbebb333b818b Author: Andy Seaborne <[email protected]> AuthorDate: Wed Apr 17 20:24:42 2024 +0100 Deprecated unused RowSetReaderJSON_V1 --- .../main/java/org/apache/jena/riot/rowset/rw/RowSetReaderJSON_V1.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/RowSetReaderJSON_V1.java b/jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/RowSetReaderJSON_V1.java index e567d937b9..5912f6c2e6 100644 --- a/jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/RowSetReaderJSON_V1.java +++ b/jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/RowSetReaderJSON_V1.java @@ -56,8 +56,9 @@ import org.apache.jena.vocabulary.RDF; * This was the ResultSet/RowSet reader for JSON up to and including Jena 4.4.0. * Jena 4.5.0 introduced {@link RowSetReaderJSONStreaming}. * <p> - * To switch back, call {@link RowSetReaderJSON_V1#install}. + * @deprecated To be removed. */ +@Deprecated(since="5.0.0", forRemoval=true) public class RowSetReaderJSON_V1 implements RowSetReader { public static void install() {
