Skip to content

Commit bed9b90

Browse files
authored
Merge pull request #8943 from francoisprunier/francoisprunier-fix-getIsRestfulDestroy
Fixed wrong constant being used
2 parents 4f35f19 + 357a88d commit bed9b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/swagger-codegen/src/main/java/io/swagger/codegen/v3/CodegenOperation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ public Boolean getIsRestfulUpdate() {
484484
}
485485

486486
public Boolean getIsRestfulDestroy() {
487-
return getBooleanValue(CodegenConstants.IS_RESTFUL_UPDATE_EXT_NAME);
487+
return getBooleanValue(CodegenConstants.IS_RESTFUL_DESTROY_EXT_NAME);
488488
}
489489

490490
public Boolean getIsRestful() {

0 commit comments

Comments
 (0)