Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
msridhar committed Jul 30, 2024
1 parent 336f904 commit 8588700
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ plugins {

dependencies {
annotationProcessor(rootProject.versionCatalogs.named("libs").findLibrary("nullaway").get())
compileOnly(
rootProject.versionCatalogs.named("libs").findLibrary("nullaway-annotations").get())
compileOnly(rootProject.versionCatalogs.named("libs").findLibrary("nullaway-annotations").get())
}

tasks.withType<JavaCompile>().configureEach {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ public class NullabilityUtil {

/** Exception thrown when a {@link #castToNonNull(Object)} call fails. */
public static class CastToNonNullFailedException extends RuntimeException {
private static final long serialVersionUID = 1L;

private static final long serialVersionUID = -4118612881206393972L;
}

/**
Expand Down

0 comments on commit 8588700

Please sign in to comment.