);
for (ChampionSkin skin : champion.getSkins()) {
Box skinBox = Box.createVerticalBox();
JLabel skinName = new JLabel(skin.isDefault() ? champion.getDisplayName() : skin.getDisplayName());
skinBox.add(skinName);
skinBox.add(new SkinImageLabel(skin, SkinImageLabel.DisplayType.PORTRAIT, champion.getDisplayName()));
this.skinsPanel.add(skinBox);
}
try {
championIcon.setIcon(new ImageIcon(champion.getIcon()));
} catch (Exception e) {