Skip to content

Commit 3a5367d

Browse files
committed
Fix javadocs
1 parent 135108f commit 3a5367d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/net/discordjug/javabot/systems/staff_commands/forms/commands/DeleteFormSubcommand.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public class DeleteFormSubcommand extends FormSubcommand implements AutoCompleta
3030
* The main constructor of this subcommand.
3131
*
3232
* @param formsRepo the forms repository
33-
* @param botConfig
3433
* @param botConfig bot configuration
3534
*/
3635
public DeleteFormSubcommand(FormsRepository formsRepo, BotConfig botConfig) {

src/main/java/net/discordjug/javabot/systems/staff_commands/forms/commands/FormSubcommand.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,18 @@
1515
*/
1616
public abstract class FormSubcommand extends Subcommand {
1717

18+
/**
19+
* Form ID field identificator used in form subcommands.
20+
*/
1821
protected static final String FORM_ID_FIELD = "form-id";
1922
private final BotConfig botConfig;
2023
private final FormsRepository formsRepository;
2124

2225
/**
2326
* The main constructor.
2427
*
25-
* @param formsRepo the forms repository
2628
* @param botConfig main bot configuration
29+
* @param formsRepository the forms repository
2730
*/
2831
public FormSubcommand(BotConfig botConfig, FormsRepository formsRepository) {
2932
this.botConfig = botConfig;

0 commit comments

Comments
 (0)