Completed
Push — master ( 1e35a8...109358 )
by korelstar
28:16 queued 26:30
created
lib/Controller/PageController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -14,12 +14,10 @@
 block discarded – undo
14 14
 use OCP\AppFramework\Controller;
15 15
 use OCP\AppFramework\Http\TemplateResponse;
16 16
 use OCP\AppFramework\Http\ContentSecurityPolicy;
17
-use OC\Encryption\Exceptions\DecryptionFailedException;
18 17
 use OCP\IRequest;
19 18
 use OCP\IConfig;
20 19
 use OCP\IL10N;
21 20
 use OCA\Notes\Service\NotesService;
22
-use OCA\Notes\Service\NoteDoesNotExistException;
23 21
 
24 22
 /**
25 23
  * Class PageController
Please login to merge, or discard this patch.
lib/Service/NotesService.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 use OCA\Notes\Db\Note;
22 22
 use OCA\Notes\Service\SettingsService;
23 23
 use OCP\IConfig;
24
-use OCP\IUserSession;
25 24
 
26 25
 
27 26
 /**
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -95,6 +95,9 @@
 block discarded – undo
95 95
         return $this->getNote($this->getFileById($folder, $id), $folder, $this->getTags($id));
96 96
     }
97 97
 
98
+    /**
99
+     * @param integer $id
100
+     */
98 101
     private function getTags ($id) {
99 102
         $tagger = \OC::$server->getTagManager()->load('files');
100 103
         if($tagger===null) {
Please login to merge, or discard this patch.