mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-24 10:26:18 +04:00
Remove unnecessary .as_mut()
call and fix log messages (#11358)
These are changes that fell out of commit: d7a3cdea65ef321d53b8dc8417175781b5272049
This commit is contained in:
parent
29439116b8
commit
2a2bc79335
@ -1080,20 +1080,20 @@ pub fn detect_indent_and_line_ending(&mut self) {
|
||||
}
|
||||
|
||||
pub fn pickup_last_saved_time(&mut self) {
|
||||
self.last_saved_time = match self.path().as_mut() {
|
||||
self.last_saved_time = match self.path() {
|
||||
Some(path) => match path.metadata() {
|
||||
Ok(metadata) => match metadata.modified() {
|
||||
Ok(mtime) => mtime,
|
||||
Err(_) => {
|
||||
Err(e) => {
|
||||
log::error!(
|
||||
"Use a system time instead of fs' mtime not supported on this platform"
|
||||
"Using system time instead of fs' mtime: not supported on this platform: {e}"
|
||||
);
|
||||
SystemTime::now()
|
||||
}
|
||||
},
|
||||
Err(e) => {
|
||||
log::error!(
|
||||
"Use a system time instead of fs' mtime: failed to file's metadata: {e}"
|
||||
"Using system time instead of fs' mtime: failed to read file's metadata: {e}"
|
||||
);
|
||||
SystemTime::now()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user