Skip to content

Commit

Permalink
Change from boxed Boolean to boolean type.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidOgunsAWS committed Mar 21, 2022
1 parent d3b86ff commit b57e634
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public Provider() {
*/
public static final class Config {
private Map<String, List<String>> terms = MapUtils.of();
private Boolean excludeDefaults = Boolean.FALSE;
private boolean excludeDefaults;

public Map<String, List<String>> getTerms() {
return terms;
Expand All @@ -73,11 +73,11 @@ public void setTerms(Map<String, List<String>> terms) {
this.terms = terms;
}

public Boolean getExcludeDefaults() {
public boolean getExcludeDefaults() {
return excludeDefaults;
}

public void setExcludeDefaults(Boolean excludeDefaults) {
public void setExcludeDefaults(boolean excludeDefaults) {
this.excludeDefaults = excludeDefaults;
}
}
Expand Down

0 comments on commit b57e634

Please sign in to comment.