WeatherApp icon indicating copy to clipboard operation
WeatherApp copied to clipboard

Class CacheClient instance has a problem, please check

Open HQTracy opened this issue 4 years ago • 0 comments

public static CacheClient getInstance() { if (mCacheClient == null) { synchronized (CacheClient.class) { if (mCacheClient == null) { mCacheClient = new CacheClient(); } } } return mCacheClient; }

HQTracy avatar May 22 '20 07:05 HQTracy