You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HasFindbugsViolation.java 320B

12345678910111213
  1. public class HasFindbugsViolation {
  2. private String field;
  3. public void use() {
  4. new DeprecatedExample().deprecatedMethod(); // violation of squid rule: CallToDeprecatedMethod
  5. System.exit(33); // violation on findbugs rule: DM_EXIT
  6. }
  7. public void useFieldForLcom4() {
  8. System.out.println(field);
  9. }
  10. }