]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove redundant null initializations.
authorBernhard Reiter <ockham@raz.or.at>
Thu, 2 Oct 2014 14:08:24 +0000 (16:08 +0200)
committerBernhard Reiter <ockham@raz.or.at>
Mon, 13 Oct 2014 22:06:07 +0000 (00:06 +0200)
lib/private/tagmanager.php
lib/private/tags.php

index 9a371a11253f524c7148336a22df896f4b60514a..72648e9b932ac4799cd8d7e21712fa5bf3e99719 100644 (file)
@@ -40,7 +40,7 @@ class TagManager implements \OCP\ITagManager {
         *
         * @var string
         */
-       private $user = null;
+       private $user;
 
        /**
        * Constructor.
@@ -65,4 +65,4 @@ class TagManager implements \OCP\ITagManager {
                return new Tags($this->user, $type, $defaultTags);
        }
 
-}
\ No newline at end of file
+}
index ca04953e42c3da69323e668c6e31f77dcb38b00c..b1bd3b13d45b1e3f3741abd570880ef9db721e17 100644 (file)
@@ -55,14 +55,14 @@ class Tags implements \OCP\ITags {
         *
         * @var string
         */
-       private $type = null;
+       private $type;
 
        /**
         * User
         *
         * @var string
         */
-       private $user = null;
+       private $user;
 
        const TAG_TABLE = '*PREFIX*vcategory';
        const RELATION_TABLE = '*PREFIX*vcategory_to_object';