File tree Expand file tree Collapse file tree 2 files changed +0
-30
lines changed
src/main/java/com/apiflows Expand file tree Collapse file tree 2 files changed +0
-30
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ public class Parameter {
77 private String name ;
88 private String in ;
99 private String value ;
10- private String target ;
1110 private String style ;
12- private String $ref = null ;
1311
1412 @ JsonProperty ("name" )
1513 public String getName () {
@@ -38,15 +36,6 @@ public void setValue(String value) {
3836 this .value = value ;
3937 }
4038
41- @ JsonProperty ("target" )
42- public String getTarget () {
43- return target ;
44- }
45-
46- public void setTarget (String target ) {
47- this .target = target ;
48- }
49-
5039 public String getStyle () {
5140 return style ;
5241 }
@@ -55,14 +44,6 @@ public void setStyle(String style) {
5544 this .style = style ;
5645 }
5746
58- public String get$ref () {
59- return $ref ;
60- }
61-
62- public void set$ref (String $ref ) {
63- this .$ref = $ref ;
64- }
65-
6647 public Parameter name (String name ) {
6748 this .name = name ;
6849 return this ;
@@ -78,19 +59,9 @@ public Parameter value(String value) {
7859 return this ;
7960 }
8061
81- public Parameter target (String target ) {
82- this .target = target ;
83- return this ;
84- }
85-
8662 public Parameter style (String style ) {
8763 this .style = style ;
8864 return this ;
8965 }
9066
91- public Parameter $ref (String $ref ) {
92- this .$ref = $ref ;
93- return this ;
94- }
95-
9667}
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ List<Operation> getOperations(String openapi) {
5858
5959 ParseOptions options = new ParseOptions ();
6060 options .setResolve (true );
61-
6261 SwaggerParseResult parseResult = null ;
6362
6463 try {
You can’t perform that action at this time.
0 commit comments