Skip to content

Commit 72c8cbb

Browse files
committed
fix: styling error (limitation of 100 chars per line)
1 parent 439218a commit 72c8cbb

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

core/src/main/java/io/grpc/internal/ManagedChannelImplBuilder.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,10 @@ public ManagedChannelImplBuilder defaultLoadBalancingPolicy(String policy) {
450450
directServerAddress);
451451
Preconditions.checkArgument(policy != null, "policy cannot be null");
452452
LoadBalancerProvider provider = LoadBalancerRegistry.getDefaultRegistry().getProvider(policy);
453-
Preconditions.checkArgument(provider != null, "No provider available for the '%s' load balancing policy.", policy);
453+
Preconditions.checkArgument(
454+
provider != null,
455+
"No provider available for the '%s' load balancing policy.",
456+
policy);
454457
this.defaultLbPolicy = provider.getPolicyName();
455458
return this;
456459
}

0 commit comments

Comments
 (0)