File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,11 @@ const CASE_MAPPER: CaseMapper = CaseMapper::new();
14
14
/// using simple capitalization and the ability to add exceptions.
15
15
/// Used when two directory entry names need to be compared.
16
16
fn cfb_uppercase_char ( c : char ) -> char {
17
- match c {
18
- // TODO: Edge cases can be added that appear
19
- // in the table from Appendix A, <3> Section 2.6.4
17
+ // TODO: Edge cases can be added that appear
18
+ // in the table from Appendix A, <3> Section 2.6.4
20
19
21
- // Base case, just do a simple uppercase
22
- _ => CASE_MAPPER . simple_uppercase ( c) ,
23
- }
20
+ // Base case, just do a simple uppercase
21
+ CASE_MAPPER . simple_uppercase ( c)
24
22
}
25
23
26
24
/// Compares two directory entry names according to CFB ordering, which is
You can’t perform that action at this time.
0 commit comments