(Class clazz)
| 146 | public static CycleDetectingLockFactory factory; |
| 147 | |
| 148 | public static ReentrantLock lock(Class clazz) { |
| 149 | return lock(clazz.getSimpleName() + " lock"); |
| 150 | } |
| 151 | |
| 152 | public static ReentrantLock lock(String name) { |
| 153 | if (PlatformUtils.isAndroidRuntime()) |