Checkstyle

This commit is contained in:
2023-03-21 08:06:04 -05:00
parent 8924343490
commit 4485898d0e

View File

@ -245,15 +245,14 @@ public class GenerateOpenApiSpecAction extends AbstractQActionFunction<GenerateO
); );
} }
openAPI.getPaths().put("/" + tableName + "/query", new Path().withGet(queryGet) openAPI.getPaths().put("/" + tableName + "/query", new Path().withGet(queryGet));
/* /*
.withPost(new Method() .withPost(new Method()
.withSummary("Search the " + tableLabel + " table by posting a QueryFilter object.") .withSummary("Search the " + tableLabel + " table by posting a QueryFilter object.")
.withTags(ListBuilder.of(tableLabel)) .withTags(ListBuilder.of(tableLabel))
.withResponses(buildStandardErrorResponses()) .withResponses(buildStandardErrorResponses())
) )
*/ */
);
/* /*
openAPI.getPaths().put("/" + tableName + "/{" + primaryKeyName + "}", new Path() openAPI.getPaths().put("/" + tableName + "/{" + primaryKeyName + "}", new Path()