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 70120dbdc6f357664210e45a6b7a173b077d16d9 Author: Andy Seaborne <[email protected]> AuthorDate: Sat Nov 15 11:26:16 2025 +0000 Remove deprecated classes, methods and constants (jena-shex) --- .../src/main/java/org/apache/jena/shex/sys/ValidationContext.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/jena-shex/src/main/java/org/apache/jena/shex/sys/ValidationContext.java b/jena-shex/src/main/java/org/apache/jena/shex/sys/ValidationContext.java index 1e4d2c9e63..660a0d5088 100644 --- a/jena-shex/src/main/java/org/apache/jena/shex/sys/ValidationContext.java +++ b/jena-shex/src/main/java/org/apache/jena/shex/sys/ValidationContext.java @@ -45,12 +45,6 @@ public class ValidationContext { private final ShexReport.Builder reportBuilder = ShexReport.create(); - /** @deprecated Use method {@link #create()} */ - @Deprecated(forRemoval = true) - public static ValidationContext create(ValidationContext vCxt) { - return vCxt.create(); - } - public ValidationContext(Graph data, ShexSchema shapes) { this(data, shapes, null); }
