Skip to content

Commit

Permalink
Issue 886 - Fixed formatting, removed unnecessary local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
zack-rma committed Oct 8, 2024
1 parent c973b7f commit ed4c804
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ public void create(@NotNull Context ctx) {
@OpenApiParam(name = REPLACE_ASSIGNED_TS, type = Boolean.class, description = "Specifies whether to "
+ "unassign all existing time series before assigning new time series specified in the content body "
+ "Default: false"),
@OpenApiParam(name = OFFICE, required = true, description = "Specifies the "
+ "office of the user making the request. This is the office that the timeseries, group, and category "
+ "belong to. If the group and/or category belong to the CWMS office, this only identifies the timeseries."),
@OpenApiParam(name = OFFICE, required = true, description = "Specifies the "
+ "office of the user making the request. This is the office that the timeseries, group, and category "
+ "belong to. If the group and/or category belong to the CWMS office, this only identifies the timeseries."),
},
method = HttpMethod.PATCH,
tags = {TAG}
Expand All @@ -250,7 +250,6 @@ public void create(@NotNull Context ctx) {
public void update(@NotNull Context ctx, @NotNull String oldGroupId) {
try (Timer.Context ignored = markAndTime(CREATE)) {
DSLContext dsl = getDslContext(ctx);
final String CWMS_OFFICE = "CWMS";
String formatHeader = ctx.req.getContentType();
String body = ctx.body();
String office = requiredParam(ctx, OFFICE);
Expand Down

0 comments on commit ed4c804

Please sign in to comment.