Skip to content

Commit

Permalink
Merge pull request #37
Browse files Browse the repository at this point in the history
make getters for prefix and suffix public
  • Loading branch information
stefanhechtltng authored May 24, 2024
2 parents 2f73e69 + 6858f91 commit 6108682
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1237,11 +1237,11 @@ public VP copyWithChangedPrefix(String prefix) {
*/
protected abstract ValueProviderBuilder<VP, ?> toBuilder(VP from);

protected String getPrefix() {
public String getPrefix() {
return prefix;
}

protected String getSuffix() {
public String getSuffix() {
return suffix;
}

Expand Down

0 comments on commit 6108682

Please sign in to comment.