Deprecated code
Answered
Hi, I'm trying to update my plugin but there are lot of methods I was using that now are marked as @deprecated.
Is there any place where I can find how to replace them? The methods says only @deprecated without making any reference to the new code replacing it.
Thanks !!
Please sign in to leave a comment.
Please share specific method(s)
There are too many, for example:
com.intellij.openapi.application.ReadAction.start()
This one specifically does have javadoc explaining replacement: https://github.com/JetBrains/intellij-community/blob/master/platform/core-api/src/com/intellij/openapi/application/ReadAction.java#L32
You can browse sources here online https://github.com/JetBrains/intellij-community/ or checkout community project (recommended anyway).
If you find any which do not have deprecation replacement information, please let us know so we can fix them timely. Thanks!
OK, I will let you know if I find some without docs there, thanks !!