Skip to content

Commit

Permalink
Remove debug printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
lockieluke committed Jan 13, 2024
1 parent 83212cd commit 4ad02ac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "swift-precompiler"
description = "A precompiler for Swift that allows you to use additional macros, include files, and more."
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/swift-precompiler"
Expand Down
4 changes: 0 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,6 @@ fn main() {
}))
.filter(|(_, path)| path.exists())
.map(|(alias, path)| (alias, path.display().to_string()))
.map(|(alias, path)| {
println!("{}", path);
(alias, path)
})
.for_each(|(alias, path)| {
include_str_og_path_str = include_str_og_path_str.replace(alias, &*path);
});
Expand Down

0 comments on commit 4ad02ac

Please sign in to comment.