mirror of
https://github.com/github/codeql.git
synced 2026-02-19 00:13:44 +01:00
13 lines
104 B
C#
13 lines
104 B
C#
class UnusedMethod
|
|
{
|
|
private void A()
|
|
{
|
|
B();
|
|
}
|
|
|
|
private void B()
|
|
{
|
|
|
|
}
|
|
}
|