Skip to content

Commit

Permalink
fix(configs, main): to erase erased fixed value assignment #1298
Browse files Browse the repository at this point in the history
  • Loading branch information
hitenkoku committed Mar 8, 2024
1 parent c304c12 commit 20d2177
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/detections/configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,6 @@ impl StoredStatic {
.unwrap(),
Some(&ret),
);
ret.is_low_memory = false;
ret
}
/// detailsのdefault値をファイルから読み取る関数
Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ fn main() {
let mut config_reader = ConfigReader::new();
// コマンドのパース情報を作成してstatic変数に格納する
let mut stored_static = StoredStatic::create_static_data(config_reader.config);
//stored_static.is_low_memory = true;
config_reader.config = None;
let mut app = App::new(stored_static.thread_number);
app.exec(&mut config_reader.app, &mut stored_static);
Expand Down

0 comments on commit 20d2177

Please sign in to comment.