First time on Kotlin and intellij. Can anyone tell...
# getting-started
r
First time on Kotlin and intellij. Can anyone tell me why some of my function names in intellij have a strikethrough them? Here the
init
name has a strikethrough
s
struck-through names are deprecated (marked with
@Deprecated
) at the declaration site
💯 1
ctrl/cmd+b
while your editing caret is on the symbol to go to the declaration, or hit F1 to get the documentation popover
r
Thanks!