Skip to content

Commit 4ad02ac

Browse files
committed
Remove debug printlns
1 parent 83212cd commit 4ad02ac

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "swift-precompiler"
33
description = "A precompiler for Swift that allows you to use additional macros, include files, and more."
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2021"
66
license = "MIT"
77
documentation = "https://docs.rs/swift-precompiler"

src/main.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,6 @@ fn main() {
185185
}))
186186
.filter(|(_, path)| path.exists())
187187
.map(|(alias, path)| (alias, path.display().to_string()))
188-
.map(|(alias, path)| {
189-
println!("{}", path);
190-
(alias, path)
191-
})
192188
.for_each(|(alias, path)| {
193189
include_str_og_path_str = include_str_og_path_str.replace(alias, &*path);
194190
});

0 commit comments

Comments
 (0)