File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
FCL/src/main/java/com/tungsten/fcl/game Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -75,8 +75,6 @@ public class FCLGameRepository extends DefaultGameRepository {
7575
7676 public final EventManager <Event > onVersionIconChanged = new EventManager <>();
7777
78- private Map <Integer ,Drawable > drawableMap = new HashMap <>();
79-
8078 public FCLGameRepository (Profile profile , File baseDirectory ) {
8179 super (baseDirectory );
8280 this .profile = profile ;
@@ -294,8 +292,7 @@ else if (analyze.has(LibraryAnalyzer.LibraryType.QUILT))
294292 }
295293
296294 private Drawable getDrawable (int id ) {
297- if (!drawableMap .containsKey (id )) drawableMap .put (id , AppCompatResources .getDrawable (FCLPath .CONTEXT ,id ));
298- return drawableMap .get (id );
295+ return AppCompatResources .getDrawable (FCLPath .CONTEXT , id );
299296 }
300297
301298 public boolean saveVersionSetting (String id ) {
You can’t perform that action at this time.
0 commit comments