mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Updating all enum FormatType to UPPERCASE as constants
This commit is contained in:
@@ -48,15 +48,15 @@ public class DialogChooseFormats {
|
||||
FCheckBox box = new FCheckBox(format.getName());
|
||||
box.setName(format.getName());
|
||||
switch (format.getFormatType()){
|
||||
case Sanctioned:
|
||||
case SANCTIONED:
|
||||
sanctioned.add(box);
|
||||
break;
|
||||
case Historic:
|
||||
case HISTORIC:
|
||||
historic.add(box);
|
||||
break;
|
||||
case Custom:
|
||||
case Casual:
|
||||
case Digital:
|
||||
case CUSTOM:
|
||||
case CASUAL:
|
||||
case DIGITAL:
|
||||
default:
|
||||
casual.add(box);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user