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 2019/09/26 00:26:25 UTC

[groovy] 06/23: don't use deprecated version of class

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 ae12a9140d05b99ea84299e7e3a3c51b10e1aa8e
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Sep 18 13:02:43 2019 +1000

    don't use deprecated version of class
---
 .../groovy/org/apache/groovy/groovysh/commands/InspectCommand.groovy    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/commands/InspectCommand.groovy b/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/commands/InspectCommand.groovy
index eee2a10..6fc947b 100644
--- a/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/commands/InspectCommand.groovy
+++ b/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/commands/InspectCommand.groovy
@@ -18,7 +18,7 @@
  */
 package org.apache.groovy.groovysh.commands
 
-import groovy.inspect.swingui.ObjectBrowser
+import groovy.console.ui.ObjectBrowser
 import jline.console.completer.Completer
 import org.apache.groovy.groovysh.CommandSupport
 import org.apache.groovy.groovysh.Groovysh