Skip to content
Snippets Groups Projects
Commit cf6fb2c2 authored by Bernhard Reiter's avatar Bernhard Reiter
Browse files

Remove redundant null initializations.

parent 3e5d7255
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ class TagManager implements \OCP\ITagManager {
*
* @var string
*/
private $user = null;
private $user;
/**
* Constructor.
......
......@@ -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';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment