HomeSort by relevance Sort by last modified time
    Searched full:maybestring (Results 1 - 1 of 1) sorted by null

  /tools/metalava/src/test/java/com/android/tools/metalava/
CompatibilityCheckTest.kt 180 src/test/pkg/Outer.kt:5: error: Attempted to change parameter from @Nullable to @NonNull: incompatible change for parameter string in test.pkg.Outer.method2(String string, String maybeString) [InvalidNullConversion:135]
181 src/test/pkg/Outer.kt:6: error: Attempted to change parameter from @Nullable to @NonNull: incompatible change for parameter string in test.pkg.Outer.method3(String maybeString, String string) [InvalidNullConversion:135]
183 src/test/pkg/Outer.kt:8: error: Attempted to change parameter from @Nullable to @NonNull: incompatible change for parameter string in test.pkg.Outer.Inner.method2(String string, String maybeString) [InvalidNullConversion:135]
184 src/test/pkg/Outer.kt:9: error: Attempted to change parameter from @Nullable to @NonNull: incompatible change for parameter string in test.pkg.Outer.Inner.method3(String maybeString, String string) [InvalidNullConversion:135]
210 fun method1(string: String, maybeString: String?): String? = null
211 fun method2(string: String, maybeString: String?): String? = null
212 fun method3(maybeString: String?, string : String): String = ""
214 fun method2(string: String, maybeString: String?): String? = null
215 fun method3(maybeString: String?, string : String): String = ""
    [all...]

Completed in 431 milliseconds