test(310): inject deliberate syntax error to trigger build failure
Some checks failed
Build and Push to ACR / Build and Push (push) Failing after 47s

This commit is contained in:
2026-05-04 19:04:27 +00:00
parent ee00febdc0
commit a2c6ab8273

View File

@@ -41,7 +41,7 @@ public class ItemsController {
Item item = new Item(id, Item item = new Item(id,
body.getOrDefault("name", "unnamed"), body.getOrDefault("name", "unnamed"),
body.getOrDefault("description", "")); body.getOrDefault("description", ""));
store.put(id, item); store.put(id, item)
return item; return item;
} }