()
| 1275 | } |
| 1276 | |
| 1277 | public static boolean isInitialized() { |
| 1278 | if (sSoSources != null) { |
| 1279 | return true; |
| 1280 | } |
| 1281 | sSoSourcesLock.readLock().lock(); |
| 1282 | try { |
| 1283 | return sSoSources != null; |
| 1284 | } finally { |
| 1285 | sSoSourcesLock.readLock().unlock(); |
| 1286 | } |
| 1287 | } |
| 1288 | |
| 1289 | public static int getSoSourcesVersion() { |
| 1290 | return sSoSourcesVersion.get(); |
no test coverage detected