Warning: Dangling Javadoc comment

后端 未结 6 2261
难免孤独
难免孤独 2021-02-12 12:27

Since I updated my Android Studio (2.3.1) and build tools (2.3.1), I\'m getting warning,

Warning: Dangling Javadoc comment

for comme

6条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-12 12:56

    You are using Javadoc format which starts with /** instead of a block comment format which starts with /* .

    To alleviate that warning, always start your comments inside the methods with /* not /**.

提交回复
热议问题