Skip to content
Snippets Groups Projects
Commit 20608aa2 authored by Steven Murray's avatar Steven Murray
Browse files

Removed unused member ArchiveFileRow::diskFilePath

parent 1d8aa048
No related branches found
Tags v0.0-12
No related merge requests found
......@@ -39,7 +39,6 @@ bool ArchiveFileRow::operator==(const ArchiveFileRow &rhs) const {
archiveFileId == rhs.archiveFileId &&
diskInstance == rhs.diskInstance &&
diskFileId == rhs.diskFileId &&
diskFilePath == rhs.diskFilePath &&
diskFileOwnerUid == rhs.diskFileOwnerUid &&
diskFileGid == rhs.diskFileGid &&
size == rhs.size &&
......@@ -56,7 +55,6 @@ std::ostream &operator<<(std::ostream &os, const ArchiveFileRow &obj) {
"archiveFileId=" << obj.archiveFileId <<
"diskInstance=" << obj.diskInstance <<
"diskFileId=" << obj.diskFileId <<
"diskFilePath=" << obj.diskFilePath <<
"diskFileOwnerUid=" << obj.diskFileOwnerUid <<
"diskFileGid=" << obj.diskFileGid <<
"size=" << obj.size <<
......
......@@ -63,11 +63,6 @@ struct ArchiveFileRow {
*/
std::string diskFileId;
/**
* The path of the source disk file within its host disk system.
*/
std::string diskFilePath;
/**
* The user ID of the owner of the source disk file within its host disk system.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment