mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 01:17:27 +00:00
fix condition.
This commit is contained in:
parent
f5a6fda327
commit
b0e300c793
1 changed files with 1 additions and 1 deletions
|
@ -446,7 +446,7 @@ pub(crate) fn handle_will_rename_files(
|
||||||
let old_name = old_name.to_str()?;
|
let old_name = old_name.to_str()?;
|
||||||
let new_name = to_path.file_stem()?;
|
let new_name = to_path.file_stem()?;
|
||||||
let new_name = new_name.to_str()?;
|
let new_name = new_name.to_str()?;
|
||||||
if old_name != "mod" || new_name != "mod" {
|
if old_name != "mod" && new_name != "mod" {
|
||||||
Some((snap.url_to_file_id(&from).ok()?, new_name.to_string()))
|
Some((snap.url_to_file_id(&from).ok()?, new_name.to_string()))
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
|
|
Loading…
Reference in a new issue