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 } }