File tree Expand file tree Collapse file tree 2 files changed +0
-25
lines changed
springdoc-openapi-common/src/main/java/org/springdoc/core Expand file tree Collapse file tree 2 files changed +0
-25
lines changed Original file line number Diff line number Diff line change 25
25
import java .util .Set ;
26
26
27
27
import com .fasterxml .jackson .annotation .JsonProperty ;
28
- import org .springdoc .core .SwaggerUiConfigProperties .SyntaxHighlight ;
29
28
30
29
import static org .springdoc .core .Constants .GROUP_NAME_NOT_NULL ;
31
30
@@ -155,11 +154,6 @@ public abstract class AbstractSwaggerUiConfigProperties {
155
154
*/
156
155
protected String urlsPrimaryName ;
157
156
158
- /**
159
- * The Syntax highlight.
160
- */
161
- protected SyntaxHighlight syntaxHighlight ;
162
-
163
157
/**
164
158
* Try it out enabled
165
159
*/
@@ -227,24 +221,6 @@ public void setPersistAuthorization(Boolean persistAuthorization) {
227
221
this .persistAuthorization = persistAuthorization ;
228
222
}
229
223
230
- /**
231
- * Gets syntax highlight.
232
- *
233
- * @return the syntax highlight
234
- */
235
- public SyntaxHighlight getSyntaxHighlight () {
236
- return syntaxHighlight ;
237
- }
238
-
239
- /**
240
- * Sets syntax highlight.
241
- *
242
- * @param syntaxHighlight the syntax highlight
243
- */
244
- public void setSyntaxHighlight (SyntaxHighlight syntaxHighlight ) {
245
- this .syntaxHighlight = syntaxHighlight ;
246
- }
247
-
248
224
/**
249
225
* Gets urls.
250
226
*
Original file line number Diff line number Diff line change @@ -122,7 +122,6 @@ public SwaggerUiConfigParameters(SwaggerUiConfigProperties swaggerUiConfig) {
122
122
this .urls = swaggerUiConfig .getUrls () == null ? new HashSet <>() : swaggerUiConfig .getUrls ();
123
123
this .urlsPrimaryName = swaggerUiConfig .getUrlsPrimaryName ();
124
124
this .groupsOrder = swaggerUiConfig .getGroupsOrder ();
125
- this .syntaxHighlight = swaggerUiConfig .getSyntaxHighlight ();
126
125
this .tryItOutEnabled = swaggerUiConfig .getTryItOutEnabled ();
127
126
this .persistAuthorization = swaggerUiConfig .getPersistAuthorization ();
128
127
this .queryConfigEnabled = swaggerUiConfig .getQueryConfigEnabled ();
You can’t perform that action at this time.
0 commit comments