blob: b09e9a9db12ad041a227392acc154f04a6f0be38 [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 end)
*
* @author David Green
* @since 3.7
*/
public class DeleteLineToEndHandler extends AbstractDeleteLineHandler {
public DeleteLineToEndHandler() {
super(DeleteLineAction.TO_END, false);
}
}