We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8d468e commit 7d4718bCopy full SHA for 7d4718b
samples/spring/pet-store/src/main/java/com/amazonaws/serverless/sample/spring/PetsController.java
@@ -37,7 +37,6 @@ public Pet createPet(@RequestBody Pet newPet) {
37
38
@RequestMapping(path = "/pets", method = RequestMethod.GET)
39
public Pet[] listPets(@RequestParam("limit") Optional<Integer> limit, Principal principal) {
40
- System.out.println(principal.getName());
41
int queryLimit = 10;
42
if (limit.isPresent()) {
43
queryLimit = limit.get();
0 commit comments