Skip to content

Commit

Permalink
Man man man
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan202 committed Apr 13, 2023
1 parent b514375 commit 730109a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package tech.picnic.errorprone.refasterrules;

import com.google.errorprone.fixes.SuggestedFix;
import com.sun.source.tree.ExpressionTree;
import com.sun.source.tree.Tree;
import tech.picnic.errorprone.refaster.test.RefasterRuleCollectionTestCase;

final class SuggestFixRulesTest implements RefasterRuleCollectionTestCase {
final class SuggestedFixRulesTest implements RefasterRuleCollectionTestCase {
SuggestedFix testSuggestedFixDelete() {
return SuggestedFix.builder().delete(null).build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.sun.source.tree.Tree;
import tech.picnic.errorprone.refaster.test.RefasterRuleCollectionTestCase;

final class SuggestFixRulesTest implements RefasterRuleCollectionTestCase {
final class SuggestedFixRulesTest implements RefasterRuleCollectionTestCase {
SuggestedFix testSuggestedFixDelete() {
return SuggestedFix.delete(null);
}
Expand Down

0 comments on commit 730109a

Please sign in to comment.