Skip to content

Commit

Permalink
Remove unnecessary return statement in visitor (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong authored Feb 27, 2024
1 parent e806165 commit 22fdca8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/universe/UniverseVisitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ public boolean isValidUse(
/** Ignore method receiver annotations. */
@Override
protected void checkMethodInvocability(
AnnotatedExecutableType method, MethodInvocationTree node) {
return;
}
AnnotatedExecutableType method, MethodInvocationTree node) {}

/** Ignore constructor receiver annotations. */
@Override
Expand Down

0 comments on commit 22fdca8

Please sign in to comment.