gildor
01/16/2019, 3:21 AMNikky
01/16/2019, 3:21 AMNikky
01/16/2019, 3:21 AMNikky
01/16/2019, 3:23 AMjoelpedraza
01/16/2019, 6:46 AMpublic interface JavaIFace {
void f(String s);
}
A kotlin usage (seperate module) is unsure of nullability, so the clever developer assumes it’s nullable
class KotlinImpl : JavaIFace {
override fun f(s: String?) {}
}
If the library now adds @NotNull
to the argument, KotlinImpl::f
overrides nothing and fails to compile now. Correct? This change breaks source compatibility for library authorgildor
01/16/2019, 6:47 AMgildor
01/16/2019, 6:48 AMHullaballoonatic
06/27/2020, 1:59 AMPhani Mahesh
06/28/2020, 11:50 AMPhani Mahesh
06/28/2020, 11:51 AMGopal S Akshintala
06/29/2020, 5:08 AMsdkman
to automatically install and upgrade Kotlin preview versions (like 1.4-M2
)? Or is there any tweak we can apply on sdkman
to achieve it?Pyounes
07/01/2020, 4:01 AME.Kisaragi
07/01/2020, 9:59 AMLlamaLad7
07/01/2020, 1:58 PMClassCircularityException
, and so func.javaMethod
is unfortunately not viablestephanmg
07/02/2020, 7:02 AMuser
07/02/2020, 3:30 PMLeon johnson
07/04/2020, 4:05 AMLeon johnson
07/04/2020, 4:06 AMPepperbc
07/04/2020, 4:10 AMPepperbc
07/04/2020, 4:12 AMMr.NiceGuy
07/06/2020, 12:45 PMuser
07/06/2020, 3:13 PMuser
07/06/2020, 8:37 PMuser
07/07/2020, 9:30 AMdave08
07/08/2020, 10:20 AMuser
07/08/2020, 1:36 PMbbaldino
07/08/2020, 6:09 PM${java.class.path}
, which gives me the jaca classpath, but how can I get this for kotlin? (I get complaints about the kotlin stdlib missing)viralshah
07/08/2020, 8:58 PM