mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
40 lines
931 B
Java
40 lines
931 B
Java
|
|
@SuppressWarnings("lgtm[java/non-sync-override]")
|
|
@Deprecated
|
|
class TestSuppressWarnings {
|
|
@SuppressWarnings("lgtm[]")
|
|
public void test() {
|
|
|
|
}
|
|
@Deprecated
|
|
@SuppressWarnings({"lgtm[java/confusing-method-name] not confusing","lgtm[java/non-sync-override]"})
|
|
public void test2() {
|
|
|
|
}
|
|
@SuppressWarnings("lgtm")
|
|
public void test3() {
|
|
|
|
}
|
|
@SuppressWarnings({"lgtm[java/confusing-method-name] blah blah lgtm[java/non-sync-override]"})
|
|
public void test4() {
|
|
|
|
}
|
|
@SuppressWarnings("codeql[]")
|
|
public void test5() {
|
|
|
|
}
|
|
@Deprecated
|
|
@SuppressWarnings({"codeql[java/confusing-method-name] not confusing","codeql[java/non-sync-override]"})
|
|
public void test6() {
|
|
|
|
}
|
|
@SuppressWarnings("lgtm")
|
|
public void test7() {
|
|
|
|
}
|
|
@SuppressWarnings({"codeql[java/confusing-method-name] blah blah codeql[java/non-sync-override]"})
|
|
public void test8() {
|
|
|
|
}
|
|
}
|