chore: add SuppressWarnings to ConfigApplication
Suppress "ClassWithoutLogger" warning to prevent build warnings from appearing. This is intended to keep the code clean while not adding unnecessary logger to the application.
This commit is contained in:
parent
9be85ec6c5
commit
2a4973588d
1 changed files with 1 additions and 0 deletions
|
@ -4,6 +4,7 @@ import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.cloud.config.server.EnableConfigServer;
|
import org.springframework.cloud.config.server.EnableConfigServer;
|
||||||
|
|
||||||
|
@SuppressWarnings("ClassWithoutLogger")
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
@EnableConfigServer
|
@EnableConfigServer
|
||||||
public class ConfigApplication {
|
public class ConfigApplication {
|
||||||
|
|
Loading…
Add table
Reference in a new issue