Checkstyle!!

This commit is contained in:
2023-03-23 09:21:45 -05:00
parent 11977624bf
commit 1d2acc7364

View File

@ -371,8 +371,8 @@ public class GenerateOpenApiSpecAction extends AbstractQActionFunction<GenerateO
if(queryCapability) if(queryCapability)
{ {
openAPI.getPaths().put("/" + tableApiName + "/query", new Path() openAPI.getPaths().put("/" + tableApiName + "/query", new Path()
.withGet(queryGet)
// todo!! .withPost(queryPost) // todo!! .withPost(queryPost)
.withGet(queryGet)
); );
} }