You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@habuma
Class TacoResourceAssembler with no toResources(List<> tacos) method, only toResource(Taco tacos) method,
but in class RecentTacosController invoke new TacoResourceAssembler().toResources(tacos); Please check it.
In TacoResourceAssembler.java
@Override public TacoResource toResource(Taco taco) { return createResourceWithId(taco.getId(), taco); }
In RecentTacosController.java
List<TacoResource> tacoResources = new TacoResourceAssembler().toResources(tacos);
The text was updated successfully, but these errors were encountered:
@habuma
Class TacoResourceAssembler with no toResources(List<> tacos) method, only toResource(Taco tacos) method,
but in class RecentTacosController invoke new TacoResourceAssembler().toResources(tacos); Please check it.
@Override public TacoResource toResource(Taco taco) { return createResourceWithId(taco.getId(), taco); }
List<TacoResource> tacoResources = new TacoResourceAssembler().toResources(tacos);
The text was updated successfully, but these errors were encountered: