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