-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Boris Marn
committed
Feb 13, 2018
1 parent
9859788
commit f931fe5
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
package com.sbapp; | ||
|
||
import java.util.ArrayList; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.SpringBootConfiguration; | ||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | ||
|
@@ -29,7 +31,6 @@ | |
"com.sbapp.logic", | ||
"com.sbapp.dao" | ||
}) | ||
|
||
public class Application { | ||
public static void main(String[] args) { | ||
SpringApplication.run(Application.class, args); | ||
|
@@ -55,7 +56,8 @@ private ApiInfo apiInfo() { | |
"free to use, free to reproduce", | ||
new Contact("boris", "www.github.com", "[email protected]"), | ||
null, | ||
null); | ||
null, | ||
new ArrayList<>()); | ||
} | ||
|
||
} |