Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/commands/LoadAllSymbolsCommandHandler.java')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/commands/LoadAllSymbolsCommandHandler.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/commands/LoadAllSymbolsCommandHandler.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/commands/LoadAllSymbolsCommandHandler.java
deleted file mode 100644
index 82e27d01f2e..00000000000
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/commands/LoadAllSymbolsCommandHandler.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2015 QNX Software System and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Elena Laskavaia (QNX) - initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.debug.internal.ui.commands;
-
-import org.eclipse.cdt.debug.internal.ui.actions.LoadSymbolsForAllActionDelegate;
-import org.eclipse.core.commands.AbstractHandler;
-import org.eclipse.core.commands.ExecutionEvent;
-import org.eclipse.core.commands.ExecutionException;
-import org.eclipse.core.commands.IHandler;
-import org.eclipse.jface.action.Action;
-import org.eclipse.ui.IViewPart;
-import org.eclipse.ui.IWorkbenchPart;
-import org.eclipse.ui.handlers.HandlerUtil;
-
-public class LoadAllSymbolsCommandHandler extends AbstractHandler implements IHandler {
- @Override
- public Object execute(ExecutionEvent event) throws ExecutionException {
- final IWorkbenchPart part = HandlerUtil.getActivePart(event);
-
- if (part instanceof IViewPart) {
- LoadSymbolsForAllActionDelegate delegate = new LoadSymbolsForAllActionDelegate();
- delegate.init((IViewPart) part);
- delegate.run(new Action() {
- });
- delegate.dispose();
- }
- return null;
- }
-}

Back to the top