Skip to content

Commit

Permalink
refactor($Sensei): insert private constructor for each application
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Jan 31, 2022
1 parent 3ec2660 commit 13b1172
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
@EnableDiscoveryClient
@SpringBootApplication
public class ApiGatewayApplication {
private ApiGatewayApplication() {
}

public static void main(String[] args) {
val stopWatch = new StopWatch();
stopWatch.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
@EnableDiscoveryClient
@SpringBootApplication
public class AuthCenterApplication {
private AuthCenterApplication() {
}

public static void main(String[] args) {
val stopWatch = new StopWatch();
stopWatch.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
@EnableDiscoveryClient
@SpringBootApplication
public class MafMisApplication {
private MafMisApplication() {
}

public static void main(String[] args) {
val stopWatch = new StopWatch();
stopWatch.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
@EnableDiscoveryClient
@SpringBootApplication
public class OssCenterApplication {
private OssCenterApplication() {
}

public static void main(String[] args) {
val stopWatch = new StopWatch();
stopWatch.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
@EnableDiscoveryClient
@SpringBootApplication
public class SpringBootAdminApplication {
private SpringBootAdminApplication() {
}

public static void main(String[] args) {
val stopWatch = new StopWatch();
stopWatch.start();
Expand Down

0 comments on commit 13b1172

Please sign in to comment.