From: David ‘Bombe’ Roden Date: Sun, 24 Feb 2013 15:57:13 +0000 (+0100) Subject: Return the list instead of calling the method again. X-Git-Tag: v2~321 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=408cc963020f3cfc4d994a84f5109b914759399c;p=rhynodge.git Return the list instead of calling the method again. --- diff --git a/src/main/java/net/pterodactylus/rhynodge/states/ComicState.java b/src/main/java/net/pterodactylus/rhynodge/states/ComicState.java index 39d3d36..89f1cdc 100644 --- a/src/main/java/net/pterodactylus/rhynodge/states/ComicState.java +++ b/src/main/java/net/pterodactylus/rhynodge/states/ComicState.java @@ -112,7 +112,7 @@ public class ComicState extends AbstractState implements Iterable { * @return The URLs of this comic’s images */ public List imageUrls() { - return imageUrls(); + return imageUrls; } /**