Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Summary: One of the deprecated method was removed that caused build failures for new AS release. Let's remove `Override` for now and fully remove it later.

Reviewed By: Katalune

Differential Revision: D63710026

fbshipit-source-id: b398ff0e52e52aa2834f048f45340d8cf6c58bf0
  • Loading branch information
Andrii Shcherba authored and facebook-github-bot committed Oct 2, 2024
1 parent 3798982 commit b56de9d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ public Annotation createWeakWarningAnnotation(PsiElement elt, @Nullable String m
return null;
}

@Override
// This method is removed in the newer APIs, but is present in the older ones, so let's keep it
// for now and remove it later.
// TODO: remove this method
public Annotation createWeakWarningAnnotation(ASTNode node, @Nullable String message) {
return null;
}
Expand Down

0 comments on commit b56de9d

Please sign in to comment.