Skip to content
Snippets Groups Projects
Unverified Commit 159699b5 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Remove an unnecessary code branch

parent af809c96
No related branches found
No related tags found
No related merge requests found
......@@ -384,20 +384,17 @@ func FuzzyMatchV2(caseSensitive bool, normalize bool, forward bool, input *util.
var class charClass
if char <= unicode.MaxASCII {
class = charClassOfAscii(char)
if !caseSensitive && class == charUpper {
char += 32
}
} else {
class = charClassOfNonAscii(char)
}
if !caseSensitive && class == charUpper {
if char <= unicode.MaxASCII {
char += 32
} else {
if !caseSensitive && class == charUpper {
char = unicode.To(unicode.LowerCase, char)
}
}
if normalize {
char = normalizeRune(char)
if normalize {
char = normalizeRune(char)
}
}
Tsub[off] = char
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment