Skip to content

Commit

Permalink
chore: refactor RouterApplication class to remove final modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
YukinaMochizuki committed Aug 17, 2024
1 parent 1662858 commit 022f46b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SuppressWarnings("checkstyle:HideUtilityClassConstructor")
@SuppressWarnings({"checkstyle:HideUtilityClassConstructor", "checkstyle:FinalClass"})
@SpringBootApplication
public final class RouterApplication {
public class RouterApplication {
/**
* Main method to run the application.
*
Expand Down

0 comments on commit 022f46b

Please sign in to comment.