Skip to content

Commit 23d2a6a

Browse files
authored
Fixing bad import. (#1520)
Somehow this got annotated as @nonnull when it was supposed to use @NotNull like everything else.
1 parent c9a371f commit 23d2a6a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cwms-data-api/src/main/java/cwms/cda/api/TimeSeriesGroupController.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
import java.util.List;
7171
import java.util.logging.Logger;
7272
import javax.servlet.http.HttpServletResponse;
73-
import org.checkerframework.checker.nullness.qual.NonNull;
7473
import org.jetbrains.annotations.NotNull;
7574
import org.jooq.DSLContext;
7675

@@ -327,7 +326,7 @@ public void update(@NotNull Context ctx, @NotNull String oldGroupId) {
327326
tags = {TAG}
328327
)
329328
@Override
330-
public void delete(@NotNull Context ctx, @NonNull String groupId) {
329+
public void delete(@NotNull Context ctx, @NotNull String groupId) {
331330
try (Timer.Context ignored = markAndTime(UPDATE)) {
332331
DSLContext dsl = getDslContext(ctx);
333332

0 commit comments

Comments
 (0)