From bce81e24647507c82e02e9918f54e8e3a2431149 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 26 Jan 2015 21:21:15 -0500 Subject: cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` calls --- src/libstd/path/posix.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libstd/path') diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index 202d81f5696..360ab2fdf67 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -109,7 +109,7 @@ impl GenericPathUnsafe for Path { unsafe fn new_unchecked(path: T) -> Path { let path = Path::normalize(path.container_as_bytes()); assert!(!path.is_empty()); - let idx = path.as_slice().rposition_elem(&SEP_BYTE); + let idx = path.rposition_elem(&SEP_BYTE); Path{ repr: path, sepidx: idx } } @@ -290,7 +290,7 @@ impl GenericPath for Path { } } } - Some(Path::new(comps.as_slice().connect(&SEP_BYTE))) + Some(Path::new(comps.connect(&SEP_BYTE))) } } -- cgit 1.4.1-3-g733a5