about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorIgor Matuszewski <Xanewok@gmail.com>2019-03-02 23:21:47 +0100
committerIgor Matuszewski <Xanewok@gmail.com>2019-03-04 18:19:30 +0100
commit8aa0f44d15fe133f10830e4b58cd20f207bbf769 (patch)
treed23461389499e416ba2743da748b46dc31d33a96 /src
parentb3c28dba830fb7c88133a0a402f02a5dff9d0738 (diff)
Remove eprintln
Diffstat (limited to 'src')
-rw-r--r--src/rustfmt_diff.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rustfmt_diff.rs b/src/rustfmt_diff.rs
index c796db09c87..8081221af49 100644
--- a/src/rustfmt_diff.rs
+++ b/src/rustfmt_diff.rs
@@ -122,13 +122,11 @@ impl std::str::FromStr for ModifiedLines {
                 (Some(orig), Some(removed), Some(added)) => (orig, removed, added),
                 _ => return Err(()),
             };
-            eprintln!("{} {} {}", orig, rem, new_lines);
             let (orig, rem, new_lines): (u32, u32, usize) =
                 match (orig.parse(), rem.parse(), new_lines.parse()) {
                     (Ok(a), Ok(b), Ok(c)) => (a, b, c),
                     _ => return Err(()),
                 };
-            eprintln!("{} {} {}", orig, rem, new_lines);
             let lines = lines.by_ref().take(new_lines);
             let lines: Vec<_> = lines.map(ToOwned::to_owned).collect();
             if lines.len() != new_lines {