Skip to content

Commit

Permalink
Fix imports in ApplicationError
Browse files Browse the repository at this point in the history
The Checker Nullable import should not be in the static import section.
  • Loading branch information
sleberknight committed Feb 17, 2024
1 parent 704a4d8 commit 229d692
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import static com.google.common.base.Preconditions.checkState;
import static java.util.Objects.isNull;
import static java.util.Objects.nonNull;
import org.checkerframework.checker.nullness.qual.Nullable;
import static org.kiwiproject.base.KiwiPreconditions.checkArgumentNotBlank;
import static org.kiwiproject.base.KiwiPreconditions.checkArgumentNotNull;
import static org.kiwiproject.base.KiwiThrowables.EMPTY_THROWABLE_INFO;
Expand All @@ -18,6 +17,7 @@
import lombok.Synchronized;
import lombok.Value;
import lombok.With;
import org.checkerframework.checker.nullness.qual.Nullable;

import java.time.ZoneOffset;
import java.time.ZonedDateTime;
Expand Down

0 comments on commit 229d692

Please sign in to comment.