Skip to content

Commit

Permalink
Remove unused attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Sep 11, 2023
1 parent 56c4621 commit 7d46811
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.util.Map;
import java.util.Optional;

import io.quarkiverse.ironjacamar.Defaults;
import io.quarkus.runtime.annotations.ConfigDocMapKey;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigPhase;
Expand All @@ -18,8 +19,6 @@
@ConfigRoot(phase = ConfigPhase.BUILD_TIME)
public interface IronJacamarBuildtimeConfig {

String DEFAULT_RESOURCE_ADAPTER_NAME = "<default>";

/**
* Whether IronJacamar (pool) metrics are published in case a metrics extension is present.
* <p>
Expand All @@ -36,7 +35,7 @@ public interface IronJacamarBuildtimeConfig {
@ConfigDocMapKey("resource-adapter-name")
@WithParentName
@WithDefaults
@WithUnnamedKey(DEFAULT_RESOURCE_ADAPTER_NAME)
@WithUnnamedKey(Defaults.DEFAULT_RESOURCE_ADAPTER_NAME)
Map<String, ResourceAdapterOuterNamedConfig> resourceAdapters();

@ConfigGroup
Expand Down

0 comments on commit 7d46811

Please sign in to comment.