diff --git a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/MIGDBSetBreakpointApply.java b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/MIGDBSetBreakpointApply.java deleted file mode 100644 index 1b21b083340..00000000000 --- a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/MIGDBSetBreakpointApply.java +++ /dev/null @@ -1,30 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2008 Ericsson 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: - * Ericsson - Initial API and implementation - *******************************************************************************/ -package org.eclipse.dd.mi.service.command.commands; - -import org.eclipse.dd.dsf.debug.service.command.ICommandControlService.ICommandControlDMContext; - -/** - * - * -gdb-set breakpoint apply [global | process] - * - * Set breakpoints applicability mode. - * global == a breakpoint applies to all processes. - * process == a breakpoint applies to a single process. - * @since 1.1 - */ -public class MIGDBSetBreakpointApply extends MIGDBSet -{ - public MIGDBSetBreakpointApply(ICommandControlDMContext ctx, boolean global) { - super(ctx, new String[] {"breakpoint", "apply", global ? "global" : "process"});//$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$ //$NON-NLS-4$ - } -} -