Restore the missing semicolon in ItemsController#create so the Java compilation step succeeds.
All checks were successful
Build and Push to ACR / Build and Push (push) Successful in 1m21s

This commit is contained in:
2026-05-07 21:32:44 +00:00
parent 068ae60a17
commit 508ddfd425

View File

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