hho
11/17/2017, 10:03 AMholgerbrandl
11/20/2017, 5:01 PMlet
such as in
openFasta("hervs99k.fasta")
.filter { it.sequence.length.let { it in 1000..3000 } }
// suggest to replace unnecessary let with just
.filter { it.sequence.length in 1000..3000 }
?kirillrakhman
11/21/2017, 10:22 AMin
operator in which case you should open an issueFré Dumazy
11/21/2017, 1:14 PMdreamreal
11/21/2017, 2:20 PMchristophsturm
11/24/2017, 12:33 PMprivate fun blah(): String {
val blah="123"
return blah
}
and when i right click on the blah in return blah and select inline, nothing happensdamian
11/24/2017, 6:24 PMchansek
11/25/2017, 5:11 AMjkbbwr
11/25/2017, 3:47 PMmingkangpan
11/27/2017, 11:44 AMmingkangpan
11/27/2017, 12:02 PMjchannon
11/28/2017, 8:29 PMconn
further down I’d like it to tell me what it isPaul Woitaschek
11/30/2017, 10:16 AMPaul Woitaschek
11/30/2017, 9:37 PMAndreas Sinz
12/01/2017, 8:26 AMstkent
12/04/2017, 8:00 PMDalinar
12/05/2017, 4:39 AMomuomugin
12/06/2017, 6:11 AMyole
12/06/2017, 5:41 PMsnowe
12/08/2017, 10:17 PMfun main(args: ArrayList<String>) {
wineluis
12/10/2017, 9:51 PMpoohbar
12/11/2017, 6:36 PMbj0
12/11/2017, 8:07 PMStartAbortedException
when I try to start AS 😞christophsturm
12/13/2017, 2:05 PMdiego-gomez-olvera
12/15/2017, 10:51 AMxenoterracide
12/21/2017, 4:57 PMnapperley
12/21/2017, 8:18 PMFAILURE: Build failed with an exception.
* What went wrong:
org/jetbrains/kotlin/kapt/idea/KaptGradleModel : Unsupported major.minor version 52.0Doing the equivalent Gradle refresh via
./gradlew build
in the terminal works without any issues (using traditional Gradle DSL). Same error occurs when using Gradle Kotlin DSL instead of the traditional one. Appear to have encountered severe IntelliJ regression(s). One other thing, IntelliJ's syntax checker isn't working when making a change to a .kt file (it is always showing a green check mark) 😧.xenoterracide
12/22/2017, 4:16 PMralf
01/02/2018, 9:16 AMif (something
) {
// do something
}
Is the line wrapping intended? I don’t think so, but I also couldn’t find a setting to turn it off.gaetan
01/06/2018, 9:24 AMif (true)
System.err.println("true")
becomes
if (true
)
System.err.println("true")
Seems to be a bug no? But I don’t find it on youtrack.gaetan
01/06/2018, 9:24 AMif (true)
System.err.println("true")
becomes
if (true
)
System.err.println("true")
Seems to be a bug no? But I don’t find it on youtrack.snrostov
01/06/2018, 10:42 AM