summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/intentions/threadLocal/before5.java
blob: c459443241e46c4aee116ba746c05f2a8925c6d8 (plain)
1
2
3
4
5
6
7
// "Convert to ThreadLocal" "true"
class Test {
  Integer <caret>field=new Integer(0);
  void foo(Test t) {
    if (t.field == null) return;
  }
}