Skip to content

Commit

Permalink
S1200 S6539 Mark types as nullable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dorian-burihabwa-sonarsource committed Apr 14, 2023
1 parent c3b7868 commit 4d2658f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public abstract class AbstractCouplingChecker extends BaseTreeVisitor implements
/**
* Implementations of this method should add the fully-qualified name of the type to the set {@link AbstractCouplingChecker#types}.
*/
abstract void checkTypes(@Nullable Tree type, Set<String> types);
abstract void checkTypes(@Nullable Tree type, @Nullable Set<String> types);

@Override
public void scanFile(JavaFileScannerContext context) {
Expand Down

0 comments on commit 4d2658f

Please sign in to comment.