Merge branch 'pmd6-improve-pmd-analysis' into pmd7-merge-master

This commit is contained in:
Clément Fournier committed 2022-03-05 17:26:49 +01:00
commit c66ece42d0
1 file changed
+1 -1
@@ -405,7 +405,7 @@ public class PMDConfiguration extends AbstractConfiguration {
@DeprecatedUntil700
public void setRuleSets(@Nullable String ruleSets) {
if (ruleSets == null) {
this.ruleSets= new ArrayList<>();
this.ruleSets = new ArrayList<>();
} else {
this.ruleSets = new ArrayList<>(Arrays.asList(ruleSets.split(",")));
}