aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-squid-java-plugin/test-resources/bytecode/callToDeprecatedMethod/src/CallToDeprecatedMethod.java
blob: 4a6af6cd41b7852aa7964568e51c19a185c7bad6 (plain)
1
2
3
4
5
6
7
8
public class CallToDeprecatedMethod {
  
  public CallToDeprecatedMethod() {
    String string = new String("my string");
    string.getBytes(1, 1, new byte[3], 7); //call to deprecated method
  }
}