"StartsWith" and "EndsWith" overloads that take a "char" should be used instead of the ones that take a "string" (#5347)

This commit is contained in:
Marco Carvalho 2023-06-22 21:15:14 -03:00 committed by GitHub
parent efbd29463d
commit 91e4caaa69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Sfdnsres.Proxy
}
// Ignore comments and empty lines
if (line.StartsWith("#") || line.Trim().Length == 0)
if (line.StartsWith('#') || line.Trim().Length == 0)
{
continue;
}