From 4c1d4626cf00e1e42265907e023f65ea32a38914 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Wed, 26 Nov 2008 15:51:29 +0000 Subject: [PATCH] [244053] I got confirmation from the GDB committer that the command "set breakpoint apply" will not be added to GDB. In 1.1, I had added MIGDBSetBreakpointApply.java which is now useless, so we remove the file altogether. --- .../commands/MIGDBSetBreakpointApply.java | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/MIGDBSetBreakpointApply.java 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$ - } -} -