Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,6 @@ public Description matchWildcard(WildcardTree tree, VisitorState state) {
return Description.NO_MATCH;
}

@SuppressWarnings("for-rollout:deprecation")
private void describe(Optional<AssertjCheckerResult> result, Tree tree, VisitorState state) {
if (result.isPresent()) {
AssertjCheckerResult value = result.get();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ final class RefactoringValidator {
private String outputPath;
private String[] outputLines;

@SuppressWarnings("for-rollout:deprecation")
private RefactoringValidator(BugChecker refactoringBugChecker, Class<?> clazz) {
this.delegate = BugCheckerRefactoringTestHelper.newInstance(refactoringBugChecker, clazz);
this.compilationHelper = CompilationTestHelper.newInstance(refactoringBugChecker.getClass(), clazz);
Expand Down