mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
"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:
parent
efbd29463d
commit
91e4caaa69
|
@ -15,7 +15,7 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||||||
|
|
||||||
writer.Write(Params);
|
writer.Write(Params);
|
||||||
|
|
||||||
if (Params.EndsWith(">"))
|
if (Params.EndsWith('>'))
|
||||||
{
|
{
|
||||||
writer.Write(" ");
|
writer.Write(" ");
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Sfdnsres.Proxy
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ignore comments and empty lines
|
// Ignore comments and empty lines
|
||||||
if (line.StartsWith("#") || line.Trim().Length == 0)
|
if (line.StartsWith('#') || line.Trim().Length == 0)
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue