We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e54e91 commit b413c95Copy full SHA for b413c95
springdoc-openapi-common/src/main/java/org/springdoc/core/GroupedOpenApi.java
@@ -116,10 +116,13 @@ private Builder() {
116
// use static factory method in parent class
117
}
118
119
+ /**
120
+ * @deprecated Since v1.4.0, GroupedOpenApi.setGroup is marked as deprecated.
121
+ * Use {@link GroupedOpenApi#builder()#group(String)} } instead.
122
+ */
123
@Deprecated
124
public Builder setGroup(String group) {
- this.group = group;
- return this;
125
+ return this.group(group);
126
127
128
public Builder group(String group) {
0 commit comments