1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2025-01-05 19:09:03 +01:00

Suppress unchecked warnings in LoginDialog.

This commit is contained in:
sk89q 2015-07-24 17:07:24 -07:00
parent b06600a376
commit 8959f6ef76

View File

@ -79,10 +79,12 @@ public class LoginDialog extends JDialog {
});
}
@SuppressWarnings("unchecked")
private void removeListeners() {
idCombo.setModel(new DefaultComboBoxModel());
}
@SuppressWarnings("unchecked")
private void initComponents() {
idCombo.setModel(getAccounts());
updateSelection();