Skip to content

Commit

Permalink
roll back nullable annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
timo-a committed Dec 8, 2024
1 parent f06e270 commit e6fd1bb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import lombok.AccessLevel;
import lombok.EqualsAndHashCode;
import lombok.Value;
import org.jspecify.annotations.Nullable;
import org.openrewrite.ExecutionContext;
import org.openrewrite.Recipe;
import org.openrewrite.TreeVisitor;
Expand Down Expand Up @@ -92,7 +91,7 @@ public J.ClassDeclaration visitClassDeclaration(J.ClassDeclaration classDecl, Ex
}

@Override
public @Nullable J.MethodDeclaration visitMethodDeclaration(J.MethodDeclaration method, ExecutionContext ctx) {
public J.MethodDeclaration visitMethodDeclaration(J.MethodDeclaration method, ExecutionContext ctx) {
assert method.getMethodType() != null;

if (LombokUtils.isEffectivelyGetter(method)) {
Expand Down

0 comments on commit e6fd1bb

Please sign in to comment.