Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2012-03-22 16:05:53 +0000
committerSteffen Pingel2012-04-09 06:17:46 +0000
commit45dbc520f0787595ace2bbccc8f5389248e9311b (patch)
tree1228a6311271ff7980a5288a3c7e60c2af2ba777 /org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/internal/provisional/commons/ui/commands/CutLineToEndHandler.java
parent7dde261997b43157d70e4c047e64e916ecbaecb1 (diff)
downloadorg.eclipse.mylyn.commons-45dbc520f0787595ace2bbccc8f5389248e9311b.tar.gz
org.eclipse.mylyn.commons-45dbc520f0787595ace2bbccc8f5389248e9311b.tar.xz
org.eclipse.mylyn.commons-45dbc520f0787595ace2bbccc8f5389248e9311b.zip
NEW - bug 374506: remove deprecated internal provisional classes
https://bugs.eclipse.org/bugs/show_bug.cgi?id=374506 Change-Id: I02477f892f8689d91659136d866f7aca38ae36bd
Diffstat (limited to 'org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/internal/provisional/commons/ui/commands/CutLineToEndHandler.java')
-rw-r--r--org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/internal/provisional/commons/ui/commands/CutLineToEndHandler.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/internal/provisional/commons/ui/commands/CutLineToEndHandler.java b/org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/internal/provisional/commons/ui/commands/CutLineToEndHandler.java
deleted file mode 100644
index 0e639d9c..00000000
--- a/org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/internal/provisional/commons/ui/commands/CutLineToEndHandler.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007, 2010 Tasktop Technologies Inc. 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:
- * David Green - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.mylyn.internal.provisional.commons.ui.commands;
-
-import org.eclipse.ui.texteditor.DeleteLineAction;
-
-/**
- * Command handler for cut line command (to end)
- *
- * @author David Green
- * @deprecated use {@link org.eclipse.mylyn.commons.ui.texteditor.CutLineToEndHandler} instead
- */
-@Deprecated
-public class CutLineToEndHandler extends AbstractDeleteLineHandler {
-
- public CutLineToEndHandler() {
- super(DeleteLineAction.TO_END, true);
- }
-
-}

Back to the top