我知道,这不是一个好的做法,但有没有办法在Android Studio中抑制警告“Commented out code (n lines)“?
Commented out code (n lines)
0mkxixxg1#
在评论的第一行添加noinspection对我很有效:
noinspection
/* noinspection multiline comment goes here */
ny6fqffe2#
使用这种方式,这对我在Android Studio和Intellij Idea都有效:
/*/ first line second line ... n line */
2条答案
按热度按时间0mkxixxg1#
在评论的第一行添加
noinspection
对我很有效:ny6fqffe2#
使用这种方式,这对我在Android Studio和Intellij Idea都有效: