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

Removed unused copyNb from NameServerTapeFile

parent 8ebe4ab6
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,6 @@
// constructor
//------------------------------------------------------------------------------
cta::NameServerTapeFile::NameServerTapeFile():
copyNb(0),
size(0),
compressedSize(0) {
}
......@@ -31,8 +30,7 @@ cta::NameServerTapeFile::NameServerTapeFile():
// operator==
//------------------------------------------------------------------------------
bool cta::NameServerTapeFile::operator==(const NameServerTapeFile &rhs) const {
return copyNb == rhs.copyNb &&
tapeFileLocation == rhs.tapeFileLocation &&
return tapeFileLocation == rhs.tapeFileLocation &&
size == rhs.size &&
compressedSize == rhs.compressedSize &&
checksum == rhs.checksum;
......
......@@ -42,12 +42,6 @@ struct NameServerTapeFile {
*/
bool operator==(const NameServerTapeFile &rhs) const;
/**
* The copy number of the tape file where copy numbers start from 1.
* Please note that copy number 0 is an invalid copy number.
*/
uint16_t copyNb;
/**
* The location of the file on tape.
*/
......
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