apatrida
02/03/2016, 10:27 AMyan
02/03/2016, 10:29 AMapatrida
02/03/2016, 10:30 AMbenny_wang
02/03/2016, 10:32 AMapatrida
02/03/2016, 10:34 AMbenny_wang
02/03/2016, 10:36 AMbenny_wang
02/03/2016, 10:37 AMyan
02/03/2016, 10:38 AMStockFragment$stockDetail$2.invoke
(line 67)benny_wang
02/03/2016, 10:40 AMbenny_wang
02/03/2016, 10:40 AMyan
02/03/2016, 10:42 AMapatrida
02/03/2016, 10:47 AMapatrida
02/03/2016, 10:49 AMyole
02/03/2016, 10:53 AMapatrida
02/03/2016, 10:54 AMyole
02/03/2016, 10:54 AMrafal
02/03/2016, 1:59 PMrc-1025
Error:Could not find org.jetbrains.kotlin:kotlin-annotation-processing:1.0.0-rc-1025.
Is there something I've forgotten to do?yole
02/03/2016, 2:04 PMrafal
02/03/2016, 2:09 PMmaven { url '<http://dl.bintray.com/kotlin/kotlin-eap>' }
to buildscript {repositories {}}
instead of repositories {}
yan
02/03/2016, 2:51 PManko-common-0.8.2rc3
(3) when compiling using rc-1025
rafal
02/03/2016, 4:18 PMoverride fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View? {
return super.onCreateView(inflater, container, savedInstanceState)
}
before EAP it was possible to remove ?
and happily use not-null types from java. is it intentional that in eap such override is forbidden?
//note removed question marks
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup, savedInstanceState: Bundle): View {
return super.onCreateView(inflater, container, savedInstanceState)
}
with error: `Error:(115, 5) 'onCreateView' overrides nothing```yole
02/03/2016, 4:20 PMyole
02/03/2016, 4:21 PM@Nullable
in the Java class, you have to use correct nullability when you implement it in Kotlinvmironov
02/03/2016, 4:21 PMcontainer
and savedInstanceState
are actually nullable, only inflater: LayoutInflater?
can be safely replaced with inflater: LayoutInflater
eddie
02/03/2016, 4:22 PMrafal
02/03/2016, 4:22 PMyole
02/03/2016, 4:23 PMyole
02/03/2016, 4:25 PMeddie
02/03/2016, 4:27 PMjw
02/03/2016, 4:30 PM