1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

[mktemp] remove old comment

This commit is contained in:
Sunrin SHIMURA (keen) 2016-01-03 19:13:01 +09:00
parent 58d1d66d16
commit a09abc63a0

View file

@ -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 {