Skip to content
Snippets Groups Projects
Commit 12286b02 authored by Vitaliy Vashchenko's avatar Vitaliy Vashchenko
Browse files

#287 Removed unused variable. Code refactoring.

parent e304bad0
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,6 @@ public class OfficeMenuPage extends MenuPage {
private boolean playClickSound = false;
private HashMap<String, TextureRegion> wallOfGamesTextures;
private WallOfGames wallOfGames;
public OfficeMenuPage(AbstractTablexiaScreen screen) {
super(screen);
......@@ -402,7 +401,7 @@ public class OfficeMenuPage extends MenuPage {
}
private void showWallOfGames(){
if (wallOfGames==null){
if (wallOfGamesTextures==null){
wallOfGamesTextures = new HashMap<String, TextureRegion>();
for (WallOfGames.GameIconDefinition gameIconDefinition : WallOfGames.GameIconDefinition.values()){
wallOfGamesTextures.put(gameIconDefinition.getPressed(), getScreen().getScreenTextureRegion(gameIconDefinition.getPressed()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment