1
0
mirror of https://github.com/chylex/IntelliJ-Rainbow-Brackets.git synced 2025-08-13 16:17:00 +02:00

Stop swallowing all exceptions during highlighting

This commit is contained in:
2024-12-03 00:49:49 +01:00
parent 02f46987b4
commit 92baf7cad5

@@ -35,7 +35,6 @@ abstract class RainbowHighlightVisitor : HighlightVisitor {
onBeforeAnalyze(file, updateWholeFile) onBeforeAnalyze(file, updateWholeFile)
try { try {
action.run() action.run()
} catch (e: Throwable) {
} finally { } finally {
onAfterAnalyze() onAfterAnalyze()
} }