https://kotlinlang.org logo
Title
r

robfletcher

02/11/2019, 6:01 PM
One downside is that IntelliJ marks the method returning the
RootContextBuilder
as unused because you’re finding it with reflection-y magic
d

dmcg

02/11/2019, 10:42 PM
Could you point me at an example @robfletcher? - I'm not seeing that in my projects.
Ah, IntelliJ doesn't mark as unused a method called
tests
r

robfletcher

02/13/2019, 4:58 PM
hmm, that’s what mine is called
d

dmcg

02/13/2019, 4:58 PM
Who can fathom the mind of IntelliJ?
r

robfletcher

02/13/2019, 5:04 PM
weird
d

dmcg

02/13/2019, 5:06 PM
I have quite a backlog of IntelliJ bugs to file as soon as I have this release out
My day-job's project shows
fun tests()
as unused too.
IntelliJ will respect the Minutest
@Tests
annotation if you add it to a method, then alt-enter on the greyed-out method and select
Suppress unused warning if annotated by 'dev.minutest.Tests'
👍 1