Unsynchronised singletons can work just fine in threaded environments provided they're instantiated in one thread before other threads attempt to use them.
This may be as simple as calling getInstance() from the main thread before starting up any of those other threads.
However, that's irrelevant in this particular case. Since your instance variable is static final, this means it will be constructed when the class is initially loaded. By calling getInstance(), the classloaders brings in the class and, as part of that, constructs the INSTANCE member before allowing the call through to getInstance() to proceed.
The classloader itself has locking mechanisms to prevent concurrent execution by multiple threads and therefore all calls to getInstance() (including the first, immediately following the loading of the class) will return the already-initialised value.