aboutsummaryrefslogtreecommitdiffstats
path: root/inc/HTTP/WebDAV/Server/Filesystem.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/HTTP/WebDAV/Server/Filesystem.php')
-rwxr-xr-xinc/HTTP/WebDAV/Server/Filesystem.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/inc/HTTP/WebDAV/Server/Filesystem.php b/inc/HTTP/WebDAV/Server/Filesystem.php
index 66d040ba0e2..2ad0041cc53 100755
--- a/inc/HTTP/WebDAV/Server/Filesystem.php
+++ b/inc/HTTP/WebDAV/Server/Filesystem.php
@@ -244,8 +244,6 @@
function _mimetype($fspath)
{
return OC_FILESYSTEM::getMimeType($fspath);
-
- return $mime_type;
}
/**
@@ -447,7 +445,6 @@
if (OC_FILESYSTEM::is_dir($path)) {
$query = "DELETE FROM properties WHERE path LIKE '".$this->_slashify($options["path"])."%'";
OC_DB::query($query);
-// System::rm(array("-rf, $path"));
OC_FILESYSTEM::delTree($path);
} else {
OC_FILESYSTEM::unlink($path);
@@ -744,19 +741,6 @@
return $result;
}
-
-
- /**
- * create database tables for property and lock storage
- *
- * @param void
- * @return bool true on success
- */
- function create_database()
- {
- // TODO
- return false;
- }
}
?>