Skip to content

Commit 3c25af8

Browse files
committed
Remove useless annotation (Probably a copy&paste error)
1 parent c3671f1 commit 3c25af8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
package net.devh.boot.grpc.server.autoconfigure;
1919

2020
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
21-
import org.springframework.boot.context.properties.EnableConfigurationProperties;
2221
import org.springframework.context.annotation.Bean;
2322
import org.springframework.context.annotation.Conditional;
2423
import org.springframework.context.annotation.Configuration;
@@ -37,16 +36,17 @@
3736
/**
3837
* The auto configuration that will create necessary beans to provide a proper exception handling via annotations
3938
* {@link GrpcAdvice @GrpcAdvice} and {@link GrpcExceptionHandler @GrpcExceptionHandler}.
39+
*
4040
* <p>
4141
* Exception handling via global server interceptors {@link GrpcGlobalServerInterceptor @GrpcGlobalServerInterceptor}.
42+
* </p>
4243
*
4344
* @author Andjelko Perisic ([email protected])
4445
* @see GrpcAdvice
4546
* @see GrpcExceptionHandler
4647
* @see GrpcAdviceExceptionInterceptor
4748
*/
4849
@Configuration(proxyBeanMethods = false)
49-
@EnableConfigurationProperties
5050
@Conditional(GrpcAdviceIsPresentCondition.class)
5151
@AutoConfigureBefore(GrpcServerFactoryAutoConfiguration.class)
5252
public class GrpcAdviceAutoConfiguration {

0 commit comments

Comments
 (0)