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
*/
private $user = null;
private $user;
/**
* Constructor.
@ -65,4 +65,4 @@ class TagManager implements \OCP\ITagManager {
return new Tags($this->user, $type, $defaultTags);
}
}
}

View 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';