summaryrefslogtreecommitdiffstats
path: root/lib/archive
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-08-29 08:38:33 +0200
committerBart Visscher <bartv@thisnet.nl>2012-08-29 20:28:45 +0200
commit52f2e7112ea985203eca16aa787bd75a7cf92194 (patch)
tree1d1f5070b050652940847c569b1d3968bdae082c /lib/archive
parent76bc4753e9bd2698415b067108806d82ac56b663 (diff)
downloadnextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.tar.gz
nextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.zip
Whitespace fixes in lib
Diffstat (limited to 'lib/archive')
-rw-r--r--lib/archive/tar.php6
-rw-r--r--lib/archive/zip.php2
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/archive/tar.php b/lib/archive/tar.php
index f6efd6d0ecc..095362d0cd6 100644
--- a/lib/archive/tar.php
+++ b/lib/archive/tar.php
@@ -14,7 +14,7 @@ class OC_Archive_TAR extends OC_Archive{
const BZIP=2;
private $fileList;
-
+
/**
* @var Archive_Tar tar
*/
@@ -127,7 +127,7 @@ class OC_Archive_TAR extends OC_Archive{
}
return null;
}
-
+
/**
* get the uncompressed size of a file in the archive
* @param string path
@@ -254,7 +254,7 @@ class OC_Archive_TAR extends OC_Archive{
return false;
}
}
-
+
/**
* remove a file or folder from the archive
* @param string path
diff --git a/lib/archive/zip.php b/lib/archive/zip.php
index c1a5c35738b..396b1f6c054 100644
--- a/lib/archive/zip.php
+++ b/lib/archive/zip.php
@@ -12,7 +12,7 @@ class OC_Archive_ZIP extends OC_Archive{
*/
private $zip=null;
private $path;
-
+
function __construct($source){
$this->path=$source;
$this->zip=new ZipArchive();