summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigrationByThreadLocal/directString/before/Test.java
blob: 8ee02790f113b2f790d7bf4efa17e0c687dfab46 (plain)
1
2
3
4
5
6
7
8
9
class Test {
    String myS = "";

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