summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-11-12 11:32:48 +0100
committerLukas Reschke <lukas@owncloud.com>2014-11-12 11:32:48 +0100
commitda31177a8f4952520e1793d5242f1197f03913e3 (patch)
tree9bf61d125e2cda81686deecd8f8e96d1efb29fa6 /lib
parent5aaea6961c6507d3f716dcbd6a34ed453df5c3f2 (diff)
downloadnextcloud-server-da31177a8f4952520e1793d5242f1197f03913e3.tar.gz
nextcloud-server-da31177a8f4952520e1793d5242f1197f03913e3.zip
Remove debug statement
Either we throw an exception or we ignore it. But we should certainly not print this to the end-user...
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/view.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php
index 0e4da30f7b9..19676524a0e 100644
--- a/lib/private/files/view.php
+++ b/lib/private/files/view.php
@@ -676,10 +676,6 @@ class View {
$this->mkdir($filePath);
}
- if (!$tmpFile) {
- debug_print_backtrace();
- }
-
$source = fopen($tmpFile, 'r');
if ($source) {
$this->file_put_contents($path, $source);