diff options
| author | Peter Atashian <retep998@gmail.com> | 2018-02-01 20:42:31 -0500 |
|---|---|---|
| committer | Peter Atashian <retep998@gmail.com> | 2018-02-01 20:42:31 -0500 |
| commit | 259b0329d42ea9ce971c0c8c9ff72f8496a73b9e (patch) | |
| tree | 33bcecb70d18e8e78e8e65bb647e95ad8bdafb7e /src/libstd | |
| parent | dcf53c1590b741a16e92c7e5a306e923827ae301 (diff) | |
| download | rust-259b0329d42ea9ce971c0c8c9ff72f8496a73b9e.tar.gz rust-259b0329d42ea9ce971c0c8c9ff72f8496a73b9e.zip | |
This internal only method is no longer needed.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/sys/windows/fs.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/sys/windows/fs.rs b/src/libstd/sys/windows/fs.rs index 87a09925313..a49c3569b02 100644 --- a/src/libstd/sys/windows/fs.rs +++ b/src/libstd/sys/windows/fs.rs @@ -534,9 +534,6 @@ impl FileType { self.reparse_tag == c::IO_REPARSE_TAG_SYMLINK || self.reparse_tag == c::IO_REPARSE_TAG_MOUNT_POINT) } - pub fn is_symlink_dir(&self) -> bool { - self.is_symlink() && self.is_dir() - } pub fn is_reparse_point(&self) -> bool { self.attributes & c::FILE_ATTRIBUTE_REPARSE_POINT != 0 } |
