Skip to content

Commit 1d39ece

Browse files
author
Nilanchal Panigrahy
committed
Misc improvemts
1 parent 24339a3 commit 1d39ece

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed
Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package com.stacktips.movies.config;
22

3-
import io.swagger.v3.oas.models.ExternalDocumentation;
43
import io.swagger.v3.oas.models.OpenAPI;
54
import io.swagger.v3.oas.models.info.Info;
6-
import io.swagger.v3.oas.models.info.License;
75
import org.springframework.context.annotation.Bean;
86
import org.springframework.context.annotation.Configuration;
97

@@ -16,15 +14,9 @@ public OpenAPI openAPI() {
1614
Info apiInfo = new Info().title("Movies API")
1715
.description("RESTful API documentation for movies.")
1816
.version("1.0");
19-
// .license(new License().name("Apache 2.0").url("http://stacktips.com"));
20-
2117

2218
return new OpenAPI()
2319
.info(apiInfo);
24-
25-
// .externalDocs(new ExternalDocumentation()
26-
// .description("Movies API Wiki")
27-
// .url("https://github.org/npanigrahy"));
2820
}
2921

3022
}

0 commit comments

Comments
 (0)