Skip to content

Commit

Permalink
xds: BootstrapperImpl should not be public
Browse files Browse the repository at this point in the history
It isn't used outside the package and is showing up in Javadoc. Instead
of excluding it from the Javadoc, just make it package-private.
  • Loading branch information
ejona86 committed Mar 4, 2022
1 parent b8bcc35 commit d00e7ee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions xds/src/main/java/io/grpc/xds/BootstrapperImpl.java
Expand Up @@ -22,7 +22,6 @@
import com.google.common.collect.ImmutableMap;
import io.grpc.ChannelCredentials;
import io.grpc.InsecureChannelCredentials;
import io.grpc.Internal;
import io.grpc.InternalLogId;
import io.grpc.TlsChannelCredentials;
import io.grpc.alts.GoogleDefaultChannelCredentials;
Expand All @@ -44,8 +43,7 @@
/**
* A {@link Bootstrapper} implementation that reads xDS configurations from local file system.
*/
@Internal
public class BootstrapperImpl extends Bootstrapper {
class BootstrapperImpl extends Bootstrapper {

private static final String BOOTSTRAP_PATH_SYS_ENV_VAR = "GRPC_XDS_BOOTSTRAP";
@VisibleForTesting
Expand Down

0 comments on commit d00e7ee

Please sign in to comment.