mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
* Fix #3893 by only calling super.visit once In #3660 the EndOfSentenceFormat rule got refactored. The rule is called by the MultiRule 'KDocStyle'. Both the called and calling visitor function execute a super.visit(). This can cause problems. Hence, super.visit only called once with the changes made. Suspicion: Multiple KtDeclaration super.visit calls cause the crash in #3893. * Update test case description