Skip to content

Commit ff72372

Browse files
committed
cleanup (#577)
1 parent 430dcd0 commit ff72372

File tree

1 file changed

+0
-8
lines changed
  • aws-serverless-java-container-springboot3/src/test/java/com/amazonaws/serverless/proxy/spring/servletapp

1 file changed

+0
-8
lines changed

aws-serverless-java-container-springboot3/src/test/java/com/amazonaws/serverless/proxy/spring/servletapp/MessageController.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import org.springframework.web.server.ResponseStatusException;
1010

1111
import jakarta.validation.Valid;
12-
import reactor.core.publisher.Mono;
1312

1413
import java.util.Collections;
1514
import java.util.HashMap;
@@ -22,12 +21,6 @@ public class MessageController {
2221
public static final String UTF8_RESPONSE = "öüäß фрыцшщ";
2322
public static final String EX_MESSAGE = "404 exception message";
2423

25-
26-
@RequestMapping(path="/hi", method=RequestMethod.GET, produces = {"text/plain"})
27-
public Mono<String> hi() {
28-
return Mono.just(HELLO_MESSAGE);
29-
}
30-
3124
@SuppressWarnings({ "unchecked", "rawtypes" })
3225
@RequestMapping(path = "/async", method = RequestMethod.POST)
3326
@ResponseBody
@@ -37,7 +30,6 @@ public DeferredResult<Map<String, String>> asyncResult(@RequestBody Map<String,
3730
return result;
3831
}
3932

40-
4133
@RequestMapping(path="/hello", method=RequestMethod.GET, produces = {"text/plain"})
4234
public String hello() {
4335
return HELLO_MESSAGE;

0 commit comments

Comments
 (0)