From 4b5af33106253fb5161143c1800eb48f0d82807e Mon Sep 17 00:00:00 2001 From: Robert Stupp Date: Fri, 26 Aug 2022 15:58:12 +0200 Subject: [PATCH] Cleanup model reflections Quarkus 2.12 is now released and used in Nessie, with https://github.com/quarkusio/quarkus/pull/27357 Fixes #4955 --- .../org/projectnessie/quarkus/reflect/ModelReflections.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/servers/quarkus-common/src/main/java/org/projectnessie/quarkus/reflect/ModelReflections.java b/servers/quarkus-common/src/main/java/org/projectnessie/quarkus/reflect/ModelReflections.java index 1d596c8d70..eba286240e 100644 --- a/servers/quarkus-common/src/main/java/org/projectnessie/quarkus/reflect/ModelReflections.java +++ b/servers/quarkus-common/src/main/java/org/projectnessie/quarkus/reflect/ModelReflections.java @@ -17,7 +17,6 @@ import io.quarkus.runtime.annotations.RegisterForReflection; import org.projectnessie.error.NessieError; -import org.projectnessie.model.types.ContentTypeIdResolver; import org.projectnessie.services.cel.CELUtil; /** @@ -33,7 +32,6 @@ CELUtil.KeyedEntityForCel.class, CELUtil.OperationForCel.class, CELUtil.ContentForCel.class, - CELUtil.KeyEntryForCel.class, - ContentTypeIdResolver.class + CELUtil.KeyEntryForCel.class }) public abstract class ModelReflections {}