Answers for "pmd disable rule"

0

pmd disable rule

// This will suppress all the PMD warnings in this class
@SuppressWarnings("PMD")
public class Bar {
    void bar() {
        int foo;
    }
}
Posted by: Guest on February-16-2022

Browse Popular Code Answers by Language