Skip to content

Commit

Permalink
revert($Startup): each application should have construction method
Browse files Browse the repository at this point in the history
Revert "refactor($Sensei): insert private constructor for each
application"

This reverts commit 13b1172.
  • Loading branch information
johnnymillergh committed Jan 31, 2022
1 parent 3089536 commit 57d3fe3
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
@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,9 +21,6 @@
@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,9 +21,6 @@
@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,9 +21,6 @@
@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,9 +21,6 @@
@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 57d3fe3

Please sign in to comment.