diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-07-20 18:56:18 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-07-20 18:56:18 +0200 |
commit | c9be9ab251681d96cfb620ca26778ba0005023d3 (patch) | |
tree | 9546e40b893abf3970ba7554edcf7829d782314d /apps/files_encryption/lib | |
parent | 7152b8b4ee2f0d4de640868b614992e8aaf00803 (diff) | |
download | nextcloud-server-c9be9ab251681d96cfb620ca26778ba0005023d3.tar.gz nextcloud-server-c9be9ab251681d96cfb620ca26778ba0005023d3.zip |
remove unused variables
Diffstat (limited to 'apps/files_encryption/lib')
-rw-r--r-- | apps/files_encryption/lib/cryptstream.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/files_encryption/lib/cryptstream.php b/apps/files_encryption/lib/cryptstream.php index e0020537563..46471911d94 100644 --- a/apps/files_encryption/lib/cryptstream.php +++ b/apps/files_encryption/lib/cryptstream.php @@ -31,9 +31,7 @@ class OC_CryptStream{ public static $sourceStreams=array(); private $source; private $path; - private $readBuffer;//for streams that dont support seeking private $meta=array();//header/meta for source stream - private $count; private $writeCache; private $size; private static $rootView; @@ -100,7 +98,6 @@ class OC_CryptStream{ public function stream_write($data){ $length=strlen($data); - $written=0; $currentPos=ftell($this->source); if($this->writeCache){ $data=$this->writeCache.$data; |