From a9cc8adca56f0aed2b12924e58e13bff82b99199 Mon Sep 17 00:00:00 2001 From: Pete Edwards Date: Fri, 5 Jul 2024 14:16:49 +0100 Subject: [PATCH] Un-deprecate RDFa parser setting --- .../org/eclipse/rdf4j/rio/helpers/RDFaParserSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFaParserSettings.java b/core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFaParserSettings.java index 76d7ead5af..94ef5ecd73 100644 --- a/core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFaParserSettings.java +++ b/core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFaParserSettings.java @@ -35,7 +35,8 @@ public class RDFaParserSettings { /** * Enables or disables vocabulary - * expansion feature. + * expansion feature. Note that although these settings are not used within RDF4J, they are in use by external + * plugins. *

* Defaults to false *

@@ -43,7 +44,6 @@ public class RDFaParserSettings { * * @see RDFa Vocabulary Expansion */ - @Deprecated(since = "4.3.0", forRemoval = true) public static final BooleanRioSetting VOCAB_EXPANSION_ENABLED = new BooleanRioSetting( "org.eclipse.rdf4j.rio.rdfa.vocab_expansion", "Vocabulary Expansion", Boolean.FALSE);