Skip to content

Commit 850990b

Browse files
committed
Make NamedChannelCredentialsProvider package-protected
Signed-off-by: onobc <chris.bono@gmail.com>
1 parent c5346c6 commit 850990b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

module/spring-boot-grpc-client/src/main/java/org/springframework/boot/grpc/client/autoconfigure/NamedChannelCredentialsProvider.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,14 @@
3434
* Provides channel credentials using channel configuration and {@link SslBundles}.
3535
*
3636
* @author David Syer
37-
* @since 4.0.0
3837
*/
39-
public class NamedChannelCredentialsProvider implements ChannelCredentialsProvider {
38+
class NamedChannelCredentialsProvider implements ChannelCredentialsProvider {
4039

4140
private final SslBundles bundles;
4241

4342
private final GrpcClientProperties properties;
4443

45-
public NamedChannelCredentialsProvider(SslBundles bundles, GrpcClientProperties properties) {
44+
NamedChannelCredentialsProvider(SslBundles bundles, GrpcClientProperties properties) {
4645
this.bundles = bundles;
4746
this.properties = properties;
4847
}

0 commit comments

Comments
 (0)