From 0c903fd4c36f860ea5c201147f7c29605fdda991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandra=C2=A0Oberaigner?= Date: Tue, 16 Sep 2025 11:27:44 +0200 Subject: [PATCH] fix: make builder visible for javadocs, move javadoc gen to codequality profile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexandra Oberaigner --- pom.xml | 46 +++++++++---------- .../sdk/HookContextWithoutData.java | 7 +++ 2 files changed, 30 insertions(+), 23 deletions(-) diff --git a/pom.xml b/pom.xml index ada93b719..585131f0f 100644 --- a/pom.xml +++ b/pom.xml @@ -507,29 +507,6 @@ - - - - - deploy - - true - - - - - - - org.sonatype.central - central-publishing-maven-plugin - 0.8.0 - true - - central - true - - - @@ -565,6 +542,29 @@ + + + + + deploy + + true + + + + + + + org.sonatype.central + central-publishing-maven-plugin + 0.8.0 + true + + central + true + + + diff --git a/src/main/java/dev/openfeature/sdk/HookContextWithoutData.java b/src/main/java/dev/openfeature/sdk/HookContextWithoutData.java index 6e5394ee1..df1ed6ad1 100644 --- a/src/main/java/dev/openfeature/sdk/HookContextWithoutData.java +++ b/src/main/java/dev/openfeature/sdk/HookContextWithoutData.java @@ -45,4 +45,11 @@ static HookContextWithoutData from( return new HookContextWithoutData<>( key, type, defaultValue, ImmutableContext.EMPTY, clientMetadata, providerMetadata); } + + /** + * Make the builder visible for javadocs. + * + * @param flag value type + */ + public static class HookContextWithoutDataBuilder {} }