Skip to content

Commit

Permalink
Change ctor visibility of InitializrProperties.SimpleElement to public
Browse files Browse the repository at this point in the history
Closes gh-1623
  • Loading branch information
mhalbritter committed Feb 7, 2025
1 parent 7a20417 commit 77e5aaf
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,11 @@ public static final class SimpleElement {
*/
private String value;

private SimpleElement(String value) {
/**
* Create a new instance with the given value.
* @param value the value
*/
public SimpleElement(String value) {
this.value = value;
}

Expand Down

0 comments on commit 77e5aaf

Please sign in to comment.