add annotation to disable the generation of known warnings

Issue #75 new
Michael Eichberg repo owner created an issue

E.g., assume that the method x ALWAYS throws an exception and that therefore the rest of the code is dead. However, if this is intentional, we don't want to create a warning and instead want to create an issue.

@Issue(“Dead") Object x = super.x();
return t;

Also consider using @NonIssue oder @Intentional

Comments (3)

  1. Log in to comment