detected at https://github.com/checkstyle/checkstyle/pull/7836#issuecomment-599329678 ``` private static boolean isSuppressedAfterEventStart(int line, int column, Entry entry) { return entry.getFirstLine() < line || entry.getFirstLine() == line && (column == 0 || entry.getFirstColumn() <= column); } ``` pitest report:  -------- This code was added recently in scope of : https://github.com/checkstyle/checkstyle/commit/648871b6c87c84d3c24d58512a2f4ecd47f62017 WE need to recheck that removing such condition will not reopen bug that was originally tried to resolve. I am ok with prosed fix like at https://github.com/checkstyle/checkstyle/pull/7836#issuecomment-599807606