Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2018-04-16 20:47:57 +0000
committerLars Vogel2018-04-18 16:08:13 +0000
commitbb7af253bd288e46ef1df9328d7bd26d53f5a9eb (patch)
tree03bf3d5bc7dd9757c3d30d97301ee596c3dee938 /org.eclipse.ui.workbench.texteditor
parentc4364388c6e8f6f17b39c06f82f55475d2ee91b9 (diff)
downloadeclipse.platform.text-bb7af253bd288e46ef1df9328d7bd26d53f5a9eb.tar.gz
eclipse.platform.text-bb7af253bd288e46ef1df9328d7bd26d53f5a9eb.tar.xz
eclipse.platform.text-bb7af253bd288e46ef1df9328d7bd26d53f5a9eb.zip
Removes obvious reference to super constructor in GotoLineDialog
Change-Id: I99aefe37d2c82d2735feca935785ec0028d39178 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/GotoLineAction.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/GotoLineAction.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/GotoLineAction.java
index 7fcd613c45e..3fa8e835980 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/GotoLineAction.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/GotoLineAction.java
@@ -90,9 +90,6 @@ public class GotoLineAction extends TextEditorAction {
*/
class GotoLineDialog extends InputDialog {
- /*
- * @see InputDialog#InputDialog(org.eclipse.swt.widgets.Shell, java.lang.String, java.lang.String, java.lang.String, org.eclipse.jface.dialogs.IInputValidator)
- */
public GotoLineDialog(Shell parent, String title, String message, String initialValue, IInputValidator validator) {
super(parent, title, message, initialValue, validator);
}

Back to the top