Fix the compile failure on dev by adding the missing semicolon after store.put(id, item) in ItemsController.create().
All checks were successful
Build and Push to ACR / Build and Push (push) Successful in 57s

This commit is contained in:
2026-05-07 21:14:08 +00:00
parent 75a18723c8
commit ae73403644

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;
}