Remove redundant null initializations.

This commit is contained in:
Bernhard Reiter 2014-10-02 16:08:24 +02:00
parent 3e5d725502
commit cf6fb2c2e4
2 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ class TagManager implements \OCP\ITagManager {
* *
* @var string * @var string
*/ */
private $user = null; private $user;
/** /**
* Constructor. * Constructor.

View File

@ -55,14 +55,14 @@ class Tags implements \OCP\ITags {
* *
* @var string * @var string
*/ */
private $type = null; private $type;
/** /**
* User * User
* *
* @var string * @var string
*/ */
private $user = null; private $user;
const TAG_TABLE = '*PREFIX*vcategory'; const TAG_TABLE = '*PREFIX*vcategory';
const RELATION_TABLE = '*PREFIX*vcategory_to_object'; const RELATION_TABLE = '*PREFIX*vcategory_to_object';