Skip to content

Commit

Permalink
whitespace tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey committed Apr 28, 2022
1 parent 4511f20 commit 160820f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/browser/ui/file_dialog_gtk.cc
Expand Up @@ -38,7 +38,6 @@ std::string MakeCaseInsensitivePattern(const std::string& extension) {
for (std::size_t i = 0, n = extension.size(); i < n; i++) {

char ch = extension[i];

if (!base::IsAsciiAlpha(ch)) {
pattern.push_back(ch);
continue;
Expand All @@ -48,6 +47,7 @@ std::string MakeCaseInsensitivePattern(const std::string& extension) {
pattern.push_back(base::ToLowerASCII(ch));
pattern.push_back(base::ToUpperASCII(ch));
pattern.push_back(']');

}

return pattern;
Expand Down

0 comments on commit 160820f

Please sign in to comment.