Remove ClientConfig::getDirstateStoragePath().

Summary:
This seems like something that I should have deleted as part of D6179950 when we
moved the storage of dirstate data from Eden to Hg.

Reviewed By: chadaustin

Differential Revision: D6311543

fbshipit-source-id: df00d348be9a9dbbce18fa81e2cd1015b1780b02
This commit is contained in:
Michael Bolin 2017-11-13 10:59:35 -08:00 committed by Facebook Github Bot
parent 17661a573c
commit fe636ca62c
2 changed files with 0 additions and 8 deletions

View File

@ -47,7 +47,6 @@ const facebook::eden::RelativePathPiece kSnapshotFile{"SNAPSHOT"};
const facebook::eden::RelativePathPiece kBindMountsDir{"bind-mounts"};
const facebook::eden::RelativePathPiece kCloneSuccessFile{"clone-succeeded"};
const facebook::eden::RelativePathPiece kOverlayDir{"local"};
const facebook::eden::RelativePathPiece kDirstateFile{"dirstate"};
// File holding mapping of client directories.
const facebook::eden::RelativePathPiece kClientDirectoryMap{"config.json"};
@ -175,10 +174,6 @@ AbsolutePath ClientConfig::getCloneSuccessPath() const {
return clientDirectory_ + kCloneSuccessFile;
}
AbsolutePath ClientConfig::getDirstateStoragePath() const {
return clientDirectory_ + kDirstateFile;
}
ClientConfig::ConfigData ClientConfig::loadConfigData(
AbsolutePathPiece etcEdenDirectory,
AbsolutePathPiece configPath) {

View File

@ -128,9 +128,6 @@ class ClientConfig {
/** File that will be written once the clone for this client has succeeded. */
AbsolutePath getCloneSuccessPath() const;
/** Path to the file where the dirstate data is stored. */
AbsolutePath getDirstateStoragePath() const;
/** Path to the file where the current commit ID is stored */
AbsolutePath getSnapshotPath() const;