Skip to content

Commit 0be12ca

Browse files
committed
resolve merge conflicts
1 parent e10bdec commit 0be12ca

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
@@ -45,8 +45,8 @@ public final class Config {
4545
private final FeatureBlacklistConfig featureBlacklistConfig;
4646
private final RSSFeedsConfig rssFeedsConfig;
4747
private final String selectRolesChannelPattern;
48-
private final ApplicationFormConfig applicationFormConfig;
4948
private final String memberCountCategoryPattern;
49+
private final ApplicationFormConfig applicationFormConfig;
5050

5151
@SuppressWarnings("ConstructorWithTooManyParameters")
5252
@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
@@ -406,21 +406,21 @@ public String getSelectRolesChannelPattern() {
406406
}
407407

408408
/**
409-
* The configuration related to the application form.
409+
* Gets the pattern matching the category that is used to display the total member count.
410410
*
411-
* @return the application form config
411+
* @return the categories name types
412412
*/
413-
public ApplicationFormConfig getApplicationFormConfig() {
414-
return applicationFormConfig;
413+
public String getMemberCountCategoryPattern() {
414+
return memberCountCategoryPattern;
415415
}
416416

417417
/**
418-
* Gets the pattern matching the category that is used to display the total member count.
418+
* The configuration related to the application form.
419419
*
420-
* @return the categories name types
420+
* @return the application form config
421421
*/
422-
public String getMemberCountCategoryPattern() {
423-
return memberCountCategoryPattern;
422+
public ApplicationFormConfig getApplicationFormConfig() {
423+
return applicationFormConfig;
424424
}
425425

426426
/**

0 commit comments

Comments
 (0)