blob: ab9fc820571422c746298564b63d31045c77f6a1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2011 Tasktop Technologies Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* David Green - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.commons.workbench.texteditor;
import org.eclipse.ui.texteditor.DeleteLineAction;
/**
* Command handler for delete line command (to beginning)
*
* @author David Green
* @since 3.7
*/
public class DeleteLineToBeginningHandler extends AbstractDeleteLineHandler {
public DeleteLineToBeginningHandler() {
super(DeleteLineAction.TO_BEGINNING, false);
}
}