[Refactor] Simplify boolean comparison.

This commit is contained in:
2025-11-24 19:28:24 +00:00
parent 7b487033b5
commit 5774885431
3 changed files with 6 additions and 6 deletions

View File

@@ -286,7 +286,7 @@ public class PluginRegister
}
}
if(!noFilter?.Identify(path) == true)
if(noFilter?.Identify(path) == false)
{
transaction.Finish();