mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Also optimize a filename check...
... to avoid 3 rounds of recursion per check.
This commit is contained in:
parent
ec1d5134ac
commit
5edce67f73
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ namespace DiscUtils.Fat
|
||||||
|
|
||||||
public bool Equals(FileName other)
|
public bool Equals(FileName other)
|
||||||
{
|
{
|
||||||
if (other == null)
|
if (other is null)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue