Since I updated my Android Studio (2.3.1) and build tools (2.3.1), I'm getting warning,
Warning: Dangling Javadoc comment
for comments like,
/** set name with format, {@Link FORMAT_NAME} **/
setNameText(getFormattedName(FORMAT_NAME));
As you can see, I use javadoc style comment for linking and others. I'm wondering if there are other comment alternatives that have linking feature.
Thanks.