aboutsummaryrefslogtreecommitdiffstats
path: root/it/projects/java-bytecode/src/HasFindbugsViolation.java
blob: c68f54f97cd4083e557285fcc265373eaacba49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class HasFindbugsViolation {

  private String field;

  public void use() {
    new DeprecatedExample().deprecatedMethod(); // violation of squid rule: CallToDeprecatedMethod
    System.exit(33); // violation on findbugs rule: DM_EXIT
  }

  public void useFieldForLcom4() {
    System.out.println(field);
  }
}