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
All checks were successful
Build and Push to ACR / Build and Push (push) Successful in 1m21s
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user