Skip to content

Commit d7b5bda

Browse files
authored
Fix checkstyle issue in AbstractGrpcServerFactory
1 parent 2224705 commit d7b5bda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/serverfactory/AbstractGrpcServerFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ protected void configureKeepAlive(final T builder) {
130130
protected void configureConnectionLimits(final T builder) {
131131
if (this.properties.getMaxConnectionIdle() != null) {
132132
throw new IllegalStateException(
133-
"MaxConnectionIdle is set but this implementation does not support maxConnectionIdle!");
133+
"MaxConnectionIdle is set but this implementation does not support maxConnectionIdle!");
134134
}
135135
if (this.properties.getMaxConnectionAge() != null) {
136136
throw new IllegalStateException(
137-
"MaxConnectionAge is set but this implementation does not support maxConnectionAge!");
137+
"MaxConnectionAge is set but this implementation does not support maxConnectionAge!");
138138
}
139139
if (this.properties.getMaxConnectionAgeGrace() != null) {
140140
throw new IllegalStateException(
141-
"MaxConnectionAgeGrace is set but this implementation does not support maxConnectionAgeGrace!");
141+
"MaxConnectionAgeGrace is set but this implementation does not support maxConnectionAgeGrace!");
142142
}
143143
}
144144

0 commit comments

Comments
 (0)