removed unnecessary parentheses
This commit is contained in:
committed by
Henrik Friedrichsen
parent
d2915316da
commit
404ba65faf
@@ -370,7 +370,7 @@ impl Spotify {
|
||||
.elapsed
|
||||
.read()
|
||||
.expect("could not acquire read lock on elapsed time");
|
||||
(*elapsed)
|
||||
*elapsed
|
||||
}
|
||||
|
||||
fn set_since(&self, new_since: Option<SystemTime>) {
|
||||
@@ -386,7 +386,7 @@ impl Spotify {
|
||||
.since
|
||||
.read()
|
||||
.expect("could not acquire read lock on since time");
|
||||
(*since)
|
||||
*since
|
||||
}
|
||||
|
||||
pub fn refresh_token(&self) {
|
||||
|
||||
Reference in New Issue
Block a user