Skip to content

Commit

Permalink
Deprecated classes made public on oversight (#3038)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjav-desai authored May 24, 2021
1 parent a02028c commit 8413790
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
/**
* Configuration builder.
*/
@Deprecated
public class MpConfigBuilder implements ConfigBuilder {
private boolean useDefaultSources = false;
private boolean useDiscoveredSources = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
/**
* Implementation of the basic MicroProfile {@link org.eclipse.microprofile.config.Config} API.
*/
@Deprecated
public class MpConfigImpl implements Config {
private static final Logger LOGGER = Logger.getLogger(MpConfigImpl.class.getName());
// for references resolving
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ public void releaseConfig(Config config) {
* A delegate used to allow replacing configuration at runtime for components
* that hold a reference to configuration obtained at build time.
*/
@Deprecated
public static final class ConfigDelegate implements io.helidon.config.Config, Config {
private final AtomicReference<Config> delegate = new AtomicReference<>();
private final AtomicReference<io.helidon.config.Config> helidonDelegate = new AtomicReference<>();
Expand Down

0 comments on commit 8413790

Please sign in to comment.