Skip to content

Commit

Permalink
resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
christolis committed Mar 19, 2024
1 parent 75cec91 commit cb7815a
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public final class Config {
private final HelperPruneConfig helperPruneConfig;
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 @@ -415,20 +415,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 cb7815a

Please sign in to comment.