do not need parenthesis for associative operations (IDEADEV-41569); move to java...
[fedora-idea.git] / java / java-tests / testData / refactoring / introduceVariable / ConflictingFieldInOuterClass.after.java
blob39a6ba8a4b03e37377a01c77e19df74480eec0f0
1 public class Test4 {
2 String text = "Hello world!";
3 private class Q {
4 void foo() {
5 final String text = Test4.this.text;
6 System.out.println("text = " + text);