Skip to content

Commit

Permalink
fix remove useless stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
maitrecraft1234 committed Sep 9, 2024
1 parent e3af8ef commit b3a0ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/obfuscator/boolean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn obfuctated_boolean(val: &str) -> String {
let val = match val {
"True" => format!("thruthy({})", random_args()),
"False" => format!("falsy({})", random_args()),
_ => {dbg!(val); panic!()},//unreachable!(),
_ => unreachable!(),
};
return format!("({} {})","not not ".repeat(thread_rng().gen_range(0..2)), val);
}
Expand Down

0 comments on commit b3a0ab0

Please sign in to comment.