Skip to content

Commit ec57614

Browse files
committed
Make TextCapability constructor public
Closes gh-1621
1 parent 2386966 commit ec57614

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ public class TextCapability extends ServiceCapability<String> {
3333
this(id, null, null);
3434
}
3535

36-
TextCapability(String id, String title, String description) {
36+
/**
37+
* Creates a new instance.
38+
* @param id the id of this capability
39+
* @param title the title of this capability
40+
* @param description the description of this capability
41+
*/
42+
public TextCapability(String id, String title, String description) {
3743
super(id, ServiceCapabilityType.TEXT, title, description);
3844
}
3945

0 commit comments

Comments
 (0)