Skip to content

Commit c89ca9a

Browse files
committed
Formatting
1 parent d3d4e8f commit c89ca9a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ allprojects {
7979
apply plugin: 'com.diffplug.spotless'
8080
apply plugin: 'io.franzbecker.gradle-lombok'
8181

82-
java {
83-
toolchain {
84-
languageVersion = JavaLanguageVersion.of(8)
85-
}
86-
}
82+
java {
83+
toolchain {
84+
languageVersion = JavaLanguageVersion.of(8)
85+
}
86+
}
8787

8888
compileJava {
8989
sourceCompatibility = JavaVersion.VERSION_1_8

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ public List<GrpcServerConfigurer> defaultServerConfigurers() {
128128
@ConditionalOnMissingBean
129129
@ConditionalOnBean(GrpcServerFactory.class)
130130
@Bean
131-
public GrpcServerLifecycle grpcServerLifecycle(final GrpcServerFactory factory,
131+
public GrpcServerLifecycle grpcServerLifecycle(
132+
final GrpcServerFactory factory,
132133
final GrpcServerProperties properties) {
133134
return new GrpcServerLifecycle(factory, properties.getShutdownGracePeriod());
134135
}

0 commit comments

Comments
 (0)