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:
Oliver Weyhmüller 2023-06-26 19:11:38 +02:00
parent 9be85ec6c5
commit 2a4973588d
Signed by: oliver
GPG key ID: 5286794099F934A3

View file

@ -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 {