Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Nov 4, 2024
1 parent 3ac050b commit ec45c19
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rwf/src/http/url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,7 @@ pub fn urldecode(s: &str) -> String {
"20" => " ",
"7B" => "{",
"7D" => "}",
_ => {
println!("num: {}", num);
&num
}
_ => &num,
};

result.push_str(replacement);
Expand Down

0 comments on commit ec45c19

Please sign in to comment.