feat: add override annotation (#3306)

Co-authored-by: behappyleee <72903623+behappyleee@users.noreply.github.com>
This commit is contained in:
devch37
2026-05-31 18:03:03 +03:00
committed by GitHub
co-authored by behappyleee
parent f93514af39
commit 9f0b7ae81d
@@ -40,6 +40,7 @@ public class CakeViewImpl implements View {
this.cakeBakingService = cakeBakingService;
}
@Override
public void render() {
cakeBakingService.getAllCakes().forEach(cake -> LOGGER.info(cake.toString()));
}