Remove unneeded module specifiers from Deref{,Mut} impls

This commit is contained in:
Matthias Beyer 2016-04-21 13:13:58 +02:00
parent 3f2114bf1f
commit cb3683940e

View file

@ -553,7 +553,7 @@ impl<'a> FileLockEntry<'a, > {
}
}
impl<'a> ::std::ops::Deref for FileLockEntry<'a> {
impl<'a> Deref for FileLockEntry<'a> {
type Target = Entry;
fn deref(&self) -> &Self::Target {
@ -561,7 +561,7 @@ impl<'a> ::std::ops::Deref for FileLockEntry<'a> {
}
}
impl<'a> ::std::ops::DerefMut for FileLockEntry<'a> {
impl<'a> DerefMut for FileLockEntry<'a> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.entry
}