about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorPeter Atashian <retep998@gmail.com>2018-02-01 20:42:31 -0500
committerPeter Atashian <retep998@gmail.com>2018-02-01 20:42:31 -0500
commit259b0329d42ea9ce971c0c8c9ff72f8496a73b9e (patch)
tree33bcecb70d18e8e78e8e65bb647e95ad8bdafb7e /src/libstd/sys
parentdcf53c1590b741a16e92c7e5a306e923827ae301 (diff)
downloadrust-259b0329d42ea9ce971c0c8c9ff72f8496a73b9e.tar.gz
rust-259b0329d42ea9ce971c0c8c9ff72f8496a73b9e.zip
This internal only method is no longer needed.
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/windows/fs.rs3
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
     }