walkmod-sonar-plugin icon indicating copy to clipboard operation
walkmod-sonar-plugin copied to clipboard

UseCollectionIsEmpty fixes

Open subisueno opened this issue 8 years ago • 0 comments

-------- list.isEmpty conditions -------------

list.size() == 0 list.size() <= 0 list.size() < 1

0 == list.size() 0 >= list.size() 1 > list.size()

-------- !list.isEmpty conditions -------------

list.size() != 0 list.size() > 0 list.size() >= 1

0 != list.size() 0 < list.size() 1 <= list.size()

subisueno avatar Jul 26 '17 07:07 subisueno