Skip to content

Commit 4c185fd

Browse files
mma5997frantuma
authored andcommitted
removed final modifier
missed removing the final modifier for requestBody var
1 parent c2a6d1c commit 4c185fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/swagger-parser-v3/src/main/java/io/swagger/v3/parser/processors/OperationProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void processOperation(Operation operation) {
4040
if(processedOperationParameters != null) {
4141
operation.setParameters(processedOperationParameters);
4242
}
43-
final RequestBody requestBody = operation.getRequestBody();
43+
RequestBody requestBody = operation.getRequestBody();
4444
if(requestBody != null) {
4545
//This part allows paser to put requestBody schema inline without the resolveFully option set to true
4646
if (requestBody.get$ref() != null) {

0 commit comments

Comments
 (0)