CommentTracker#markUsed -> markUnchanged; ReplaceInefficientStreamCountInspection: move comments from .stream() call parameters list outside of resulting .size() parameters list (IDEA-CR-16097).

This commit is contained in:
Tagir Valeev
2016-11-23 11:46:22 +07:00
parent a1e5d5d45c
commit e60be117ba
4 changed files with 10 additions and 7 deletions
@@ -4,6 +4,7 @@ import java.util.Arrays;
class Test {
int cnt() {
return Arrays.asList('d', 'e', 'f').size(/*inside*/);
/*inside*/
return Arrays.asList('d', 'e', 'f').size();
}
}