Files
detekt/detekt-rules-documentation
M Schalk 15980dc6f0 Fix #3893 by only calling super.visit once (#3904)
* 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
2021-07-22 14:15:22 -07:00
..