Skip to content

Commit 042a0e0

Browse files
committed
resolve merge conflicts
1 parent 0ac579f commit 042a0e0

File tree

1 file changed

+9
-9
lines changed
  • application/src/main/java/org/togetherjava/tjbot/config

1 file changed

+9
-9
lines changed

application/src/main/java/org/togetherjava/tjbot/config/Config.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public final class Config {
4343
private final JShellConfig jshell;
4444
private final FeatureBlacklistConfig featureBlacklistConfig;
4545
private final String selectRolesChannelPattern;
46-
private final ApplicationFormConfig applicationFormConfig;
4746
private final String memberCountCategoryPattern;
47+
private final ApplicationFormConfig applicationFormConfig;
4848

4949
@SuppressWarnings("ConstructorWithTooManyParameters")
5050
@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
@@ -402,20 +402,20 @@ public String getSelectRolesChannelPattern() {
402402
}
403403

404404
/**
405-
* The configuration related to the application form.
405+
* Gets the pattern matching the category that is used to display the total member count.
406406
*
407-
* @return the application form config
407+
* @return the categories name types
408408
*/
409-
public ApplicationFormConfig getApplicationFormConfig() {
410-
return applicationFormConfig;
409+
public String getMemberCountCategoryPattern() {
410+
return memberCountCategoryPattern;
411411
}
412412

413413
/**
414-
* Gets the pattern matching the category that is used to display the total member count.
414+
* The configuration related to the application form.
415415
*
416-
* @return the categories name types
416+
* @return the application form config
417417
*/
418-
public String getMemberCountCategoryPattern() {
419-
return memberCountCategoryPattern;
418+
public ApplicationFormConfig getApplicationFormConfig() {
419+
return applicationFormConfig;
420420
}
421421
}

0 commit comments

Comments
 (0)