Rename to use correct terminology

This commit is contained in:
Kawe Mazidjatari 2022-06-05 22:30:29 +02:00
parent f446ee03dd
commit c9e3ea1f08
2 changed files with 6 additions and 6 deletions

View File

@ -123,7 +123,7 @@ vector<VPKEntryBlock_t> CPackedStore::GetEntryBlocks(CIOStream* pReader) const
// Input : &svPathIn -
// Output : vector<string>
//-----------------------------------------------------------------------------
vector<string> CPackedStore::GetEntryPaths(const string& svPathIn) const
vector<string> CPackedStore::GetBlockPaths(const string& svPathIn) const
{
vector<string> vPaths;
fs::recursive_directory_iterator dir(svPathIn), end;
@ -148,7 +148,7 @@ vector<string> CPackedStore::GetEntryPaths(const string& svPathIn) const
// &jManifest -
// Output : vector<string>
//-----------------------------------------------------------------------------
vector<string> CPackedStore::GetEntryPaths(const string& svPathIn, const nlohmann::json& jManifest) const
vector<string> CPackedStore::GetBlockPaths(const string& svPathIn, const nlohmann::json& jManifest) const
{
vector<string> vPaths;
fs::recursive_directory_iterator dir(svPathIn), end;
@ -382,11 +382,11 @@ void CPackedStore::PackAll(const VPKPair_t& vPair, const string& svPathIn, const
if (bManifestOnly)
{
vPaths = GetEntryPaths(svPathIn, jManifest);
vPaths = GetBlockPaths(svPathIn, jManifest);
}
else // Pack all files in workspace.
{
vPaths = GetEntryPaths(svPathIn);
vPaths = GetBlockPaths(svPathIn);
}
uint64_t nSharedTotal = 0i64;

View File

@ -126,8 +126,8 @@ public:
VPKDir_t GetPackDirFile(string svDirectoryFile) const;
string GetPackChunkFile(const string& svPackDirFile, uint16_t iArchiveIndex) const;
vector<VPKEntryBlock_t> GetEntryBlocks(CIOStream* reader) const;
vector<string> GetEntryPaths(const string& svPathIn) const;
vector<string> GetEntryPaths(const string& svPathIn, const nlohmann::json& jManifest) const;
vector<string> GetBlockPaths(const string& svPathIn) const;
vector<string> GetBlockPaths(const string& svPathIn, const nlohmann::json& jManifest) const;
string GetNameParts(const string& svDirectoryName, int nCaptureGroup) const;
string GetSourceName(const string& svDirectoryName) const;
nlohmann::json GetManifest(const string& svWorkSpace, const string& svManifestName) const;