Skip to content

Commit 77e5aaf

Browse files
committed
Change ctor visibility of InitializrProperties.SimpleElement to public
Closes gh-1623
1 parent 7a20417 commit 77e5aaf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

initializr-metadata/src/main/java/io/spring/initializr/metadata/InitializrProperties.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,11 @@ public static final class SimpleElement {
172172
*/
173173
private String value;
174174

175-
private SimpleElement(String value) {
175+
/**
176+
* Create a new instance with the given value.
177+
* @param value the value
178+
*/
179+
public SimpleElement(String value) {
176180
this.value = value;
177181
}
178182

0 commit comments

Comments
 (0)