You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/07/19 06:17:04 UTC

[groovy] 01/02: GROOVY-10686: Additional refactoring - one case missed during refactoring

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit 4969a8b99f994b212cc2c299a94e51e12f6ac0ea
Author: Paul King <pa...@asert.com.au>
AuthorDate: Tue Jul 19 15:50:24 2022 +1000

    GROOVY-10686: Additional refactoring - one case missed during refactoring
---
 .../groovy-console/src/main/groovy/groovy/console/ui/AstBrowser.groovy  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/groovy-console/src/main/groovy/groovy/console/ui/AstBrowser.groovy b/subprojects/groovy-console/src/main/groovy/groovy/console/ui/AstBrowser.groovy
index 99954b9628..cfef5024a5 100644
--- a/subprojects/groovy-console/src/main/groovy/groovy/console/ui/AstBrowser.groovy
+++ b/subprojects/groovy-console/src/main/groovy/groovy/console/ui/AstBrowser.groovy
@@ -362,7 +362,7 @@ class AstBrowser {
             void mouseClicked(MouseEvent e) {
                 def table = e.source
                 if (e.clickCount == 2) {
-                    launch(table, valueCol, pathClosure)
+                    outer.launch(table, valueCol, pathClosure)
                 }
             }