File tree Expand file tree Collapse file tree
src/main/java/com/example/devopstraining Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package com .example .devopstraining ;
2+
3+ import org .springframework .boot .SpringApplication ;
4+ import org .springframework .boot .autoconfigure .SpringBootApplication ;
5+
16@ SuppressWarnings ("checkstyle:HideUtilityClassConstructor" )
27@ SpringBootApplication
38public class DevopsTrainingApplication {
4- public static void main (String [] args ) {
5- SpringApplication .run (DevopsTrainingApplication .class , args );
6- }
7- }
89
9- public class DevopsTrainingApplication {
10-
11- // Private constructor to prevent instantiation
12- private DevopsTrainingApplication () {
13- throw new UnsupportedOperationException ("Utility class" );
14- }
15-
1610 public static void main (String [] args ) {
1711 SpringApplication .run (DevopsTrainingApplication .class , args );
1812 }
You can’t perform that action at this time.
0 commit comments