220221222223224225226227
{ return resources.aquire(file.getAbsolutePath(), new ValueFileLockHolder(file)); } catch (InterruptedException e) { throw new FileLockException("Lock error on " + file.getAbsolutePath(), e); } }
200201202203204205206207
204205206207208209210211
{ return resources.aquire(PrivilegedFileHelper.getAbsolutePath(file), new ValueFileLockHolder(file)); } catch (InterruptedException e) { throw new FileLockException("Lock error on " + PrivilegedFileHelper.getAbsolutePath(file), e); } }
205206207208209210211212
201202203204205206207208
219220221222223224225226