X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/ui/actions/GotoMatchingBracketAction.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/ui/actions/GotoMatchingBracketAction.java deleted file mode 100644 index ae586c0..0000000 --- a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/ui/actions/GotoMatchingBracketAction.java +++ /dev/null @@ -1,31 +0,0 @@ -package net.sourceforge.phpdt.ui.actions; - -/* - * (c) Copyright IBM Corp. 2000, 2001. - * All Rights Reserved. - */ - -import net.sourceforge.phpdt.internal.corext.Assert; -import net.sourceforge.phpeclipse.phpeditor.PHPEditor; -import net.sourceforge.phpeclipse.phpeditor.PHPEditorMessages; - -import org.eclipse.jface.action.Action; - -public class GotoMatchingBracketAction extends Action { - - public final static String GOTO_MATCHING_BRACKET = "GotoMatchingBracket"; //$NON-NLS-1$ - - private final PHPEditor fEditor; - - public GotoMatchingBracketAction(PHPEditor editor) { - super(PHPEditorMessages.getString("GotoMatchingBracket.label")); - Assert.isNotNull(editor); - fEditor = editor; - setEnabled(null != fEditor); - } - - public void run() { - fEditor.gotoMatchingBracket(); - } - -} \ No newline at end of file