Removed unused vars/declarations, update PHPDoc.

This commit is contained in:
ringmaster 2014-05-27 16:12:07 -04:00 committed by Thomas Müller
parent 826b14e36b
commit 392a1b6662
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,6 @@
namespace OC\Files\Storage\Wrapper;
use OC\Files\Filesystem;
use OCP\Files\LockNotAcquiredException;
use OCP\Files\Lock;
/**
@ -46,6 +45,8 @@ class LockingWrapper extends Wrapper {
/**
* Release an existing lock
* @param string $path Path to file, relative to this storage
* @param integer $lockType The type of lock to release
* @param bool $releaseAll If true, release all outstanding locks
* @return bool true on success, false on failure
*/
protected function releaseLock($path, $lockType, $releaseAll = false){

View File

@ -140,10 +140,9 @@ class Lock {
* Sets $this->lockFile to the specified lock file, indicating that the lock file is IN USE for this lock instance
* Also sets $this->lockFileHandle to a file handle of the lock file
* @param string $filename The name of the file to lock
* @param int $timeout Milliseconds to wait for a valid lock
* @return bool False if lock can't be acquired, true if it can.
*/
protected function lockLockFile ( $filename, $timeout = 0 ) {
protected function lockLockFile ( $filename ) {
$lockFile = $this->getLockFile($filename);
\OC_Log::write('lock', sprintf('INFO: Locking lock file %s for %s', $lockFile, $filename), \OC_Log::DEBUG);