summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigrationByAtomic/reverseString/after/Test.java
blob: a0106ff8d66f5b055837832441cb0fec56d9a9f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.util.concurrent.atomic.AtomicReference;

class Test {
    String s = "";

    void foo() {
        if (s == null) {
           System.out.println(s);
        }
    }
}