removed unnecessary omit regex #623

This commit is contained in:
DastInDark
2022-07-18 13:14:38 +09:00
parent da8f5ff26c
commit 564500b52d
+1 -2
View File
@@ -31,8 +31,7 @@ use termcolor::{BufferWriter, ColorSpec, WriteColor};
use super::detection::EvtxRecordInfo;
lazy_static! {
pub static ref OUTPUT_OMIT_REGEX: Regex =
Regex::new(r"\.\./|\./|\.\.\\\\|\.\\|\.\.\\").unwrap();
pub static ref OUTPUT_OMIT_REGEX: Regex = Regex::new(r"\.\./|\./|\.\\|\.\.\\").unwrap();
}
pub fn concat_selection_key(key_list: &[String]) -> String {