mirror of
https://github.com/github/codeql.git
synced 2026-02-12 13:11:20 +01:00
11 lines
248 B
C#
11 lines
248 B
C#
class ErroneousClassCompareFix
|
|
{
|
|
public static void ApproveTransaction(object account, Transaction transaction)
|
|
{
|
|
if (account.GetType() == typeof(Trusted.Bank.Account))
|
|
{
|
|
transaction.Process();
|
|
}
|
|
}
|
|
}
|