summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/test/com/siyeh/igfixes/threading/non_thread_safe_lazy_initialization/Normal.java
blob: 44587c1653bcc3bd916810d41e4a21bc29c4c198 (plain)
1
2
3
4
5
6
7
8
9
10
public class Normal {
    private static Object example;

    public static Object getInstance() {
        if (example == null) {
            example<caret> = new Object();
        }
        return example
    }
}