[ 
https://issues.apache.org/jira/browse/KITTY-18?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13040196#comment-13040196
 ] 

Gerben Castel commented on KITTY-18:
------------------------------------

Hi, 

I've got a quick fix for this bug :

In Client.groovy, "cd(String path)" method, replace :

   if (path == "..") {
      if (this.mBeansPath.length()) {
          this.mBeansPath.pop()
      }
   }

with :

   if (path == "..") {
      if (this.mBeansPath.size()) {
          this.mBeansPath.pop()
      }
   }

(there is no "length()" method on a list, replace it with "size()")

> Unix style relative paths up and down mbean tree not working 
> -------------------------------------------------------------
>
>                 Key: KITTY-18
>                 URL: https://issues.apache.org/jira/browse/KITTY-18
>             Project: Kitty
>          Issue Type: Bug
>            Reporter: Matthew Sacks
>            Priority: Critical
>              Labels: UX
>
> when navigating the mbean trees using Unix style relative paths, a No 
> signature of method error is thrown

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to