[jbosstools-issues] [JBoss JIRA] Updated: (JBIDE-2133) [Ganymede] Cannot reduce the visibility of the inherited method from MenuManager

Max Rydahl Andersen (JIRA) jira-events at lists.jboss.org
Fri Apr 25 09:54:09 EDT 2008


     [ http://jira.jboss.com/jira/browse/JBIDE-2133?page=all ]

Max Rydahl Andersen updated JBIDE-2133:
---------------------------------------

    Description: 
Eclipse 3.3:
 private boolean menuExist() {
        return menu != null && !menu.isDisposed();
    }

We had to add it in subcloass for our logic.

Eclipse 3.3:
protected boolean menuExist() {
        return menu != null && !menu.isDisposed();
    }

Used in a couple of MenuProvider's.
private boolean menuExist() {
		return getMenu() != null && !getMenu().isDisposed();
	}

Solution: 
remove our implementation.

> [Ganymede] Cannot reduce the visibility of the inherited method from MenuManager
> --------------------------------------------------------------------------------
>
>                 Key: JBIDE-2133
>                 URL: http://jira.jboss.com/jira/browse/JBIDE-2133
>             Project: Tools (JBoss Tools)
>          Issue Type: Sub-task
>            Reporter: Max Rydahl Andersen
>
> Eclipse 3.3:
>  private boolean menuExist() {
>         return menu != null && !menu.isDisposed();
>     }
> We had to add it in subcloass for our logic.
> Eclipse 3.3:
> protected boolean menuExist() {
>         return menu != null && !menu.isDisposed();
>     }
> Used in a couple of MenuProvider's.
> private boolean menuExist() {
> 		return getMenu() != null && !getMenu().isDisposed();
> 	}
> Solution: 
> remove our implementation.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jbosstools-issues mailing list