mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-21 07:17:45 +01:00
Fix CA1847: Use String.Contains(char) instead of String.Contains(string) with single characters
This commit is contained in:
parent
12e2074ba2
commit
d38aa63370
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ public partial class FileDialog
|
||||||
var match = m.Value;
|
var match = m.Value;
|
||||||
var filter = default(FilterStruct);
|
var filter = default(FilterStruct);
|
||||||
|
|
||||||
if (match.Contains("{"))
|
if (match.Contains('{'))
|
||||||
{
|
{
|
||||||
var exts = m.Groups[2].Value;
|
var exts = m.Groups[2].Value;
|
||||||
filter = new FilterStruct
|
filter = new FilterStruct
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue