From 202e15fb959e264f9ac7d1ace23c0df8047aee5a Mon Sep 17 00:00:00 2001 From: Maxmtg Date: Sun, 17 Mar 2013 21:17:57 +0000 Subject: [PATCH] removes comment refecting my doubts --- src/main/java/forge/ImageCache.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/forge/ImageCache.java b/src/main/java/forge/ImageCache.java index ffeb99b1713..e6204e8ea70 100644 --- a/src/main/java/forge/ImageCache.java +++ b/src/main/java/forge/ImageCache.java @@ -167,10 +167,8 @@ public class ImageCache { // Inventory items don't have to know how a certain client should draw them. // That's why this method is not encapsulated and overloaded in the InventoryItem descendants public static String getImageKey(InventoryItem ii, boolean altState) { - if ( ii instanceof CardPrinted ) { - // have to determine which pictures are present in our filesystem and use either set-pictures or non-set ones. + if ( ii instanceof CardPrinted ) return getImageKey((CardPrinted)ii, altState, true); - } if ( ii instanceof TournamentPack ) return ImageCache.TOURNAMENTPACK_PREFIX + ((TournamentPack)ii).getEdition(); if ( ii instanceof BoosterPack )