Skip to content

Commit

Permalink
Issue checkstyle#7855: Resolve Pitest Issues - IllegalImportCheck (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh-kukreja committed Mar 22, 2020
1 parent 53cddfd commit 335b00f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -419,7 +419,7 @@ private boolean isIllegalImportByPackagesAndClassNames(String importText) {
break;
}
}
if (!result && illegalClasses != null) {
if (illegalClasses != null) {
for (String element : illegalClasses) {
if (importText.equals(element)) {
result = true;
Expand Down

0 comments on commit 335b00f

Please sign in to comment.