I'm starting to use Static Code Analysis tools like Checkstyle, PMD and FindBugs. PMD allows to mark code as reviewed, by adding a comment to the end of the line:
System.out.println("Test"); // NOPMD by edward on 9/23/14 10:22 AM
I really don't like trailing comments and so does CheckStyle ("Don't use trailing comments."). Is there a way to tell PMD that a specific code is reviewed, without using trailing comments?