Moved Swagger2MarkupConfig back into the main package for backward compability.
This commit is contained in:
@@ -163,7 +163,4 @@
|
||||
* PR #294: Examples always start with a newline if there is other content in the same cell
|
||||
* PR 307: Include required parameters in example request
|
||||
|
||||
=== Version 1.4.0
|
||||
* Added openapi2markup to support OpenAPI v3
|
||||
* Issue #409: Fixed JSON response example
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ public class Delimiters {
|
||||
public static final String DELIMITER_THEMATIC_BREAK = "'''";
|
||||
public static final String DELIMITER_VERSE = "____";
|
||||
public static final String DOCUMENT_TITLE = "=";
|
||||
public static final String LINE_SEPARATOR = System.getProperty("line.separator");
|
||||
public static final String LINE_SEPARATOR = "\n";
|
||||
public static final String MARKER_LIST_ITEM = "*";
|
||||
public static final String MARKER_D_LIST_ITEM = ":";
|
||||
public static final String STYLE_HORIZONTAL = "horizontal";
|
||||
|
||||
@@ -31,14 +31,6 @@ public class Swagger2MarkupConfigBuilder extends Schema2MarkupConfigBuilder<Swag
|
||||
new Schema2MarkupProperties(getCompositeConfiguration(configuration)), configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DefaultSchema2MarkupConfig createConfigInstance() {
|
||||
if(config == null) {
|
||||
config = new Swagger2MarkupConfig();
|
||||
}
|
||||
return config;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Swagger2MarkupConfig build() {
|
||||
buildNaturalOrdering();
|
||||
|
||||
Reference in New Issue
Block a user