diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-11 19:17:45 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-11 19:17:45 +0800 |
| commit | e8e33963801b63d03a2b6d5f872348add2cecc56 (patch) | |
| tree | 87e2396356f060e9211829bcbe4f4c64b6e8d5ea /mingling_core/src/asset/comp | |
| parent | 3a366931579cbda5fef32f1ae9d2ea09377c60af (diff) | |
Apply clippy suggestions and remove unused serde dependency
Diffstat (limited to 'mingling_core/src/asset/comp')
| -rw-r--r-- | mingling_core/src/asset/comp/suggest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling_core/src/asset/comp/suggest.rs b/mingling_core/src/asset/comp/suggest.rs index 55a874f..81000d5 100644 --- a/mingling_core/src/asset/comp/suggest.rs +++ b/mingling_core/src/asset/comp/suggest.rs @@ -80,7 +80,7 @@ impl PartialOrd for SuggestItem { impl Ord for SuggestItem { fn cmp(&self, other: &Self) -> std::cmp::Ordering { - self.suggest().cmp(&other.suggest()) + self.suggest().cmp(other.suggest()) } } |
