Parameter Info: Do not render nullability annotations

#KT-23408 Fixed
This commit is contained in:
Alexey Sedunov
2018-04-05 20:17:22 +03:00
parent e5b915661a
commit c1d8ba9c2b
6 changed files with 40 additions and 3 deletions
@@ -0,0 +1,8 @@
import org.jetbrains.annotations.Nullable
import org.jetbrains.annotations.NotNull
class J {
static void foo(@Nullable String s1, @NotNull String s2, String s3) {
}
}
@@ -0,0 +1,7 @@
fun test() {
J.foo(<caret>"1", "2", "3")
}
/*
Text: (<highlight>s1: String?</highlight>, s2: String, s3: String!), Disabled: false, Strikeout: false, Green: true
*/