Remove unused Node fields

This commit is contained in:
Ingo Weinhold 2011-06-23 21:22:47 +02:00
parent 882b03aba9
commit 82c5739d76
2 changed files with 1 additions and 6 deletions

View File

@ -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");
}

View File

@ -74,9 +74,6 @@ protected:
char* fName;
Node* fNameHashTableNext;
Node* fIDHashTableNext;
mode_t fMode;
uid_t fUserID;
gid_t fGroupID;
};