mirror of
https://github.com/github/codeql.git
synced 2026-03-27 01:38:22 +01:00
19 lines
352 B
Java
19 lines
352 B
Java
|
|
@SuppressWarnings("lgtm[java/non-sync-override]")
|
|
@Deprecated
|
|
class TestSuppressWarnings {
|
|
@SuppressWarnings("lgtm[]")
|
|
public void test() {
|
|
|
|
}
|
|
@Deprecated
|
|
@SuppressWarnings("lgtm[java/confusing-method-name]")
|
|
public void test2() {
|
|
|
|
}
|
|
@SuppressWarnings("lgtm")
|
|
public void test3() {
|
|
|
|
}
|
|
}
|