From d556041d4fe58687ee17222a2ba7c0f59b2dcd35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Thu, 9 May 2024 10:48:53 +0300 Subject: [PATCH] Remove useless non-javadoc see tags --- .../html/autoinsert/HTMLAutoInsertReconciler.java | 14 +------------- .../vue/autoinsert/VueAutoInsertReconciler.java | 14 +------------- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/html/autoinsert/HTMLAutoInsertReconciler.java b/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/html/autoinsert/HTMLAutoInsertReconciler.java index 4c7120e9c3..7779c58dd6 100644 --- a/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/html/autoinsert/HTMLAutoInsertReconciler.java +++ b/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/html/autoinsert/HTMLAutoInsertReconciler.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2022, 2023 Red Hat Inc. and others. + * Copyright (c) 2022, 2024 Red Hat Inc. and others. * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ @@ -144,24 +144,15 @@ private boolean isAutoCreateQuotesEnabled() { */ class Listener implements IDocumentListener, ITextInputListener { - /* - * @see IDocumentListener#documentAboutToBeChanged(DocumentEvent) - */ @Override public void documentAboutToBeChanged(DocumentEvent e) { } - /* - * @see IDocumentListener#documentChanged(DocumentEvent) - */ @Override public void documentChanged(DocumentEvent e) { autoInsert(e); } - /* - * @see ITextInputListener#inputDocumentAboutToBeChanged(IDocument, IDocument) - */ @Override public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput) { if (oldInput == document) { @@ -172,9 +163,6 @@ public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput } } - /* - * @see ITextInputListener#inputDocumentChanged(IDocument, IDocument) - */ @Override public void inputDocumentChanged(IDocument oldInput, IDocument newInput) { document = newInput; diff --git a/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/vue/autoinsert/VueAutoInsertReconciler.java b/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/vue/autoinsert/VueAutoInsertReconciler.java index 289510462a..19e93e1980 100644 --- a/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/vue/autoinsert/VueAutoInsertReconciler.java +++ b/org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/vue/autoinsert/VueAutoInsertReconciler.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2022, 2023 Red Hat Inc. and others. + * Copyright (c) 2022, 2024 Red Hat Inc. and others. * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ @@ -135,25 +135,16 @@ private void autoInsert(DocumentEvent event) { */ class Listener implements IDocumentListener, ITextInputListener { - /* - * @see IDocumentListener#documentAboutToBeChanged(DocumentEvent) - */ @Override public void documentAboutToBeChanged(DocumentEvent e) { } - /* - * @see IDocumentListener#documentChanged(DocumentEvent) - */ @Override public void documentChanged(DocumentEvent e) { System.out.println(e.toString()); autoInsert(e); } - /* - * @see ITextInputListener#inputDocumentAboutToBeChanged(IDocument, IDocument) - */ @Override public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput) { if (oldInput == document) { @@ -164,9 +155,6 @@ public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput } } - /* - * @see ITextInputListener#inputDocumentChanged(IDocument, IDocument) - */ @Override public void inputDocumentChanged(IDocument oldInput, IDocument newInput) { document = newInput;