remove unnecessary getClass call fixing test
This commit is contained in:
		@@ -5,6 +5,7 @@ import net.tomatentum.marinara.interaction.commands.annotation.SlashCommandOptio
 | 
				
			|||||||
import net.tomatentum.marinara.interaction.commands.annotation.SlashCommandOptionChoice;
 | 
					import net.tomatentum.marinara.interaction.commands.annotation.SlashCommandOptionChoice;
 | 
				
			||||||
import net.tomatentum.marinara.interaction.commands.annotation.SubCommand;
 | 
					import net.tomatentum.marinara.interaction.commands.annotation.SubCommand;
 | 
				
			||||||
import net.tomatentum.marinara.interaction.commands.annotation.SubCommandGroup;
 | 
					import net.tomatentum.marinara.interaction.commands.annotation.SubCommandGroup;
 | 
				
			||||||
 | 
					import net.tomatentum.marinara.interaction.commands.annotation.SlashCommandOption.PlaceHolderEnum;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public record ExecutableSlashCommandDefinition(
 | 
					public record ExecutableSlashCommandDefinition(
 | 
				
			||||||
    SlashCommand applicationCommand,
 | 
					    SlashCommand applicationCommand,
 | 
				
			||||||
@@ -14,7 +15,7 @@ public record ExecutableSlashCommandDefinition(
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    public static SlashCommandOptionChoice[] getActualChoices(SlashCommandOption option) {
 | 
					    public static SlashCommandOptionChoice[] getActualChoices(SlashCommandOption option) {
 | 
				
			||||||
        SlashCommandOptionChoice[] choices = option.choices();
 | 
					        SlashCommandOptionChoice[] choices = option.choices();
 | 
				
			||||||
        if (choices.length <= 0)
 | 
					        if (choices.length <= 0 && !option.choiceEnum().equals(PlaceHolderEnum.class))
 | 
				
			||||||
            choices = EnumChoices.of(option.choiceEnum()).choices();
 | 
					            choices = EnumChoices.of(option.choiceEnum()).choices();
 | 
				
			||||||
        return choices;
 | 
					        return choices;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user