summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/test/com/siyeh/igfixes/style/replace_with_string/MethodCallOnString.after.java
blob: 4ced8b802fc548529ae785fb0fbb4c22c67f355d (plain)
1
2
3
4
5
public class MethodCallOnString {
  public static void main(String... args) {
      int length = "ABC".length();
  }
}