walkmod-sonar-plugin
walkmod-sonar-plugin copied to clipboard
UseCollectionIsEmpty fixes
-------- 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()