[platform] IDEA-261340 Override visit() in EdtBgtTreeVisitor for readability

(cherry picked from commit 096b1fb2f8cac1dc1bd3ba2509db616856dfd044)

IJ-CR-102342

GitOrigin-RevId: b02733f2e3b804f101f4f3f6b94875de00f6b469
This commit is contained in:
Sergei Tachenov
2023-02-15 17:07:19 +02:00
committed by intellij-monorepo-bot
parent 09dc60d671
commit 496ee5b760

View File

@@ -20,6 +20,8 @@ interface EdtBgtTreeVisitor : TreeVisitor {
fun preVisitEDT(path: TreePath): Action?
override fun visit(path: TreePath): Action // overridden for readability
fun postVisitEDT(path: TreePath, visitResult: Action): Action
}