File tree Expand file tree Collapse file tree
src/main/groovy/com/github/hauner/openapi/spring/converter/schema Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ interface SchemaType {
2828
2929}
3030
31- abstract class SchemaTypeBase implements SchemaType {
31+ abstract class BaseSchemaType implements SchemaType {
3232
3333 protected SchemaInfo info
3434
35- SchemaTypeBase (SchemaInfo info ) {
35+ BaseSchemaType (SchemaInfo info) {
3636 this . info = info
3737 }
3838
@@ -75,7 +75,7 @@ abstract class SchemaTypeBase implements SchemaType {
7575
7676}
7777
78- class ObjectSchemaType extends SchemaTypeBase {
78+ class ObjectSchemaType extends BaseSchemaType {
7979
8080 ObjectSchemaType (SchemaInfo info) {
8181 super (info)
@@ -90,7 +90,7 @@ class ObjectSchemaType extends SchemaTypeBase {
9090
9191}
9292
93- class ArraySchemaType extends SchemaTypeBase {
93+ class ArraySchemaType extends BaseSchemaType {
9494
9595 ArraySchemaType (SchemaInfo info) {
9696 super (info)
You can’t perform that action at this time.
0 commit comments