Skip to content

Commit

Permalink
Issue checkstyle#7877: Hardcoded mutation into ImportOrderCheck.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bossever committed Feb 12, 2021
1 parent 5bf4e04 commit 390346e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -875,7 +875,7 @@ private boolean isSeparatorInGroup(int groupIdx, boolean isStatic, int line) {
* @return true if there is separator before current import which isn't the first import.
*/
private boolean isSeparatorBeforeImport(int line) {
return !beforeFirstImport && line - lastImportLine > 1;
return true && line - lastImportLine > 1;
}

/**
Expand Down

0 comments on commit 390346e

Please sign in to comment.