Remove "FS" view option from CciProcess as it was never going to be used.

This commit is contained in:
jakcron
2022-03-14 17:12:46 +08:00
parent d3343000f4
commit f08c3a11a0
2 changed files with 2 additions and 21 deletions
+1 -3
View File
@@ -15,7 +15,7 @@ public:
void setInputStream(const std::shared_ptr<tc::io::IStream>& input_stream);
void setKeyBag(const ctrtool::KeyBag& key_bag);
void setCliOutputMode(bool show_header_info, bool show_fs);
void setCliOutputMode(bool show_header_info);
void setVerboseMode(bool verbose);
void setVerifyMode(bool verify);
void setExtractPath(const tc::io::Path& extract_path);
@@ -34,7 +34,6 @@ private:
std::shared_ptr<tc::io::IStream> mInputStream;
ctrtool::KeyBag mKeyBag;
bool mShowHeaderInfo;
bool mShowFs;
bool mVerbose;
bool mVerify;
tc::Optional<tc::io::Path> mExtractPath;
@@ -52,7 +51,6 @@ private:
void importHeader();
void verifyHeader();
void printHeader();
void printFs();
void extractFs();
void processContent();