Checkstyle

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

View File

@ -245,7 +245,7 @@ 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()
.withSummary("Search the " + tableLabel + " table by posting a QueryFilter object.")
@ -253,7 +253,6 @@ public class GenerateOpenApiSpecAction extends AbstractQActionFunction<GenerateO
.withResponses(buildStandardErrorResponses())
)
*/
);
/*
openAPI.getPaths().put("/" + tableName + "/{" + primaryKeyName + "}", new Path()