We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MutableList.remove
1 parent 229c95a commit 64c953bCopy full SHA for 64c953b
2 files changed
java/ql/test/kotlin/library-tests/java-map-methods/test.expected
@@ -1,4 +1,5 @@
1
diagnostics
2
+| file://:0:0:0:0 | Couldn't find a Java equivalent function to kotlin.collections.MutableList.remove in java.util.List |
3
#select
4
| Integer |
5
| Object |
java/ql/test/kotlin/library-tests/java-map-methods/test.kt
@@ -1,3 +1,7 @@
fun test(m: Map<Int, Int>) = m.getOrDefault(1, 2)
fun test2(s: String) = s.length
+
+fun remove(l: MutableList<Int>) {
6
+ l.remove(5)
7
+}
0 commit comments