Skip to content

Commit

Permalink
resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
christolis committed Apr 4, 2024
1 parent 0ac579f commit 042a0e0
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public final class Config {
private final JShellConfig jshell;
private final FeatureBlacklistConfig featureBlacklistConfig;
private final String selectRolesChannelPattern;
private final ApplicationFormConfig applicationFormConfig;
private final String memberCountCategoryPattern;
private final ApplicationFormConfig applicationFormConfig;

@SuppressWarnings("ConstructorWithTooManyParameters")
@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
Expand Down Expand Up @@ -402,20 +402,20 @@ public String getSelectRolesChannelPattern() {
}

/**
* The configuration related to the application form.
* Gets the pattern matching the category that is used to display the total member count.
*
* @return the application form config
* @return the categories name types
*/
public ApplicationFormConfig getApplicationFormConfig() {
return applicationFormConfig;
public String getMemberCountCategoryPattern() {
return memberCountCategoryPattern;
}

/**
* Gets the pattern matching the category that is used to display the total member count.
* The configuration related to the application form.
*
* @return the categories name types
* @return the application form config
*/
public String getMemberCountCategoryPattern() {
return memberCountCategoryPattern;
public ApplicationFormConfig getApplicationFormConfig() {
return applicationFormConfig;
}
}

0 comments on commit 042a0e0

Please sign in to comment.