Remove unneeded module specifiers from Deref{,Mut} impls
This commit is contained in:
parent
3f2114bf1f
commit
cb3683940e
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue