diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-02-01 15:40:21 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-02-07 14:23:16 +0100 |
commit | 94b1b1593b1071a894520a7f29fd8dd716a87ba6 (patch) | |
tree | 739fc24a08fecd2b741a257cf5709897711ee350 /lib/public | |
parent | f45df6096bbac83c1f53a40a738c31a01b090065 (diff) | |
download | nextcloud-server-94b1b1593b1071a894520a7f29fd8dd716a87ba6.tar.gz nextcloud-server-94b1b1593b1071a894520a7f29fd8dd716a87ba6.zip |
Remove public interface that was only needed for testing
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/AppFramework/Http/FileDisplayResponse.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/public/AppFramework/Http/FileDisplayResponse.php b/lib/public/AppFramework/Http/FileDisplayResponse.php index f5b9a1cf2b9..ab23701f893 100644 --- a/lib/public/AppFramework/Http/FileDisplayResponse.php +++ b/lib/public/AppFramework/Http/FileDisplayResponse.php @@ -66,13 +66,4 @@ class FileDisplayResponse extends Response implements ICallbackResponse { $output->setOutput($this->file->getContent()); } } - - /** - * Returns the response file. - * - * @return \OCP\Files\File|\OCP\Files\SimpleFS\ISimpleFile - */ - public function getFile() { - return $this->file; - } } |