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

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