(File lockFile)
| 29 | private final @Nullable FileLock mLock; |
| 30 | |
| 31 | public static FileLocker lock(File lockFile) throws IOException { |
| 32 | return new FileLocker(lockFile); |
| 33 | } |
| 34 | |
| 35 | private FileLocker(File lockFile) throws IOException { |
| 36 | mLockFileOutputStream = new FileOutputStream(lockFile); |
no outgoing calls
no test coverage detected