From 86238d6dde441380d3f7a0b9fc6834b5bae187b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Lawson?= Date: Thu, 6 Jul 2017 15:05:56 +0200 Subject: Removed is_same_file deprecated function. --- src/lib.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index dad0414..757e56c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -122,12 +122,7 @@ use std::path::{Path, PathBuf}; use std::result; use std::vec; -#[deprecated(since="1.0.7", note="please use `is_same_file` from `same_file` crate instead.")] -pub fn is_same_file( path1: P, path2: Q) - -> io::Result where P: AsRef, Q: AsRef { - use same_file::is_same_file; - is_same_file(path1, path2) -} +use same_file::is_same_file; #[cfg(test)] mod tests; -- cgit v1.2.3