Skip to content

Commit cb7815a

Browse files
committed
resolve merge conflicts
1 parent 75cec91 commit cb7815a

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
@@ -44,8 +44,8 @@ public final class Config {
4444
private final HelperPruneConfig helperPruneConfig;
4545
private final FeatureBlacklistConfig featureBlacklistConfig;
4646
private final String selectRolesChannelPattern;
47-
private final ApplicationFormConfig applicationFormConfig;
4847
private final String memberCountCategoryPattern;
48+
private final ApplicationFormConfig applicationFormConfig;
4949

5050
@SuppressWarnings("ConstructorWithTooManyParameters")
5151
@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
@@ -415,20 +415,20 @@ public String getSelectRolesChannelPattern() {
415415
}
416416

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

426426
/**
427-
* Gets the pattern matching the category that is used to display the total member count.
427+
* The configuration related to the application form.
428428
*
429-
* @return the categories name types
429+
* @return the application form config
430430
*/
431-
public String getMemberCountCategoryPattern() {
432-
return memberCountCategoryPattern;
431+
public ApplicationFormConfig getApplicationFormConfig() {
432+
return applicationFormConfig;
433433
}
434434
}

0 commit comments

Comments
 (0)