X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/ui/actions/GenerateActionGroup.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/ui/actions/GenerateActionGroup.java index d1a2f88..bb14a3c 100644 --- a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/ui/actions/GenerateActionGroup.java +++ b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/ui/actions/GenerateActionGroup.java @@ -360,21 +360,21 @@ public class GenerateActionGroup extends ActionGroup { } } - private int appendToGroup(IMenuManager menu, IAction action) { - if (action != null && action.isEnabled()) { - menu.appendToGroup(fGroupName, action); - return 1; - } - return 0; - } - - private int addAction(IMenuManager menu, IAction action) { - if (action != null && action.isEnabled()) { - menu.add(action); - return 1; - } - return 0; - } +// private int appendToGroup(IMenuManager menu, IAction action) { +// if (action != null && action.isEnabled()) { +// menu.appendToGroup(fGroupName, action); +// return 1; +// } +// return 0; +// } + +// private int addAction(IMenuManager menu, IAction action) { +// if (action != null && action.isEnabled()) { +// menu.add(action); +// return 1; +// } +// return 0; +// } private int addEditorAction(IMenuManager menu, String actionID) { if (fEditor == null)