Remove unused Node fields

This commit is contained in:
Ingo Weinhold
2011-11-25 06:17:53 +01:00
parent 882b03aba9
commit 82c5739d76
2 changed files with 1 additions and 6 deletions
@@ -16,9 +16,7 @@ Node::Node(ino_t id)
:
fID(id),
fParent(NULL),
fName(NULL),
fUserID(0),
fGroupID(0)
fName(NULL)
{
rw_lock_init(&fLock, "packagefs node");
}
@@ -74,9 +74,6 @@ protected:
char* fName;
Node* fNameHashTableNext;
Node* fIDHashTableNext;
mode_t fMode;
uid_t fUserID;
gid_t fGroupID;
};