From a09abc63a089dc814d612e635a70ab7de03054f4 Mon Sep 17 00:00:00 2001 From: "Sunrin SHIMURA (keen)" <3han5chou7@gmail.com> Date: Sun, 3 Jan 2016 19:13:01 +0900 Subject: [PATCH] [mktemp] remove old comment --- src/mktemp/mktemp.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mktemp/mktemp.rs b/src/mktemp/mktemp.rs index ca7be7055..882999685 100644 --- a/src/mktemp/mktemp.rs +++ b/src/mktemp/mktemp.rs @@ -185,8 +185,6 @@ fn exec(tmpdir: PathBuf, prefix: &str, rand: usize, suffix: &str, make_dir: bool .prefix(prefix) .rand_bytes(rand) .suffix(suffix) - // CAUTION: Creating tempfile regardless of dry_run option. - // if dry_run options is given, we delete the created file. .create_in(tmpdir); let tmpfile = match tmpfile {