2829303132333435363738
public static SpinFactory getInstance() { if(INSTANCE == null) { synchronized (SpinFactory.class) { if(INSTANCE == null) { INSTANCE = new SpinFactoryImpl(); } } } return INSTANCE; }