mirror of
https://github.com/github/codeql.git
synced 2026-06-13 08:51:20 +02:00
Fix 3 tests
This commit is contained in:
@@ -1 +1 @@
|
||||
| test.kt:1:1:1:20 | C1 | Unused class: C1 is not referenced within this codebase. If not used as an external API it should be removed. |
|
||||
| test.kt:1:1:1:31 | C1 | Unused class: C1 is not referenced within this codebase. If not used as an external API it should be removed. |
|
||||
|
||||
@@ -1 +1 @@
|
||||
| Test.kt:12:1:12:13 | aaaa | Class and interface names should start in uppercase. |
|
||||
| Test.kt:12:1:12:24 | aaaa | Class and interface names should start in uppercase. |
|
||||
|
||||
@@ -12,7 +12,7 @@ fun fn(x:Any?, y: Any?) {
|
||||
|
||||
fun fn0(o: Any?) {
|
||||
if (o != null) {
|
||||
o?.toString()
|
||||
o.toString() // $ Alert
|
||||
o?.toString() // $ Alert
|
||||
o.toString()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user