Skip to content

Commit 7b24325

Browse files
committed
Remove useless non-javadoc see tags
1 parent 472ba2f commit 7b24325

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/html/autoinsert/HTMLAutoInsertReconciler.java

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2022, 2023 Red Hat Inc. and others.
2+
* Copyright (c) 2022, 2024 Red Hat Inc. and others.
33
* This program and the accompanying materials are made
44
* available under the terms of the Eclipse Public License 2.0
55
* which is available at https://www.eclipse.org/legal/epl-2.0/
@@ -144,24 +144,15 @@ private boolean isAutoCreateQuotesEnabled() {
144144
*/
145145
class Listener implements IDocumentListener, ITextInputListener {
146146

147-
/*
148-
* @see IDocumentListener#documentAboutToBeChanged(DocumentEvent)
149-
*/
150147
@Override
151148
public void documentAboutToBeChanged(DocumentEvent e) {
152149
}
153150

154-
/*
155-
* @see IDocumentListener#documentChanged(DocumentEvent)
156-
*/
157151
@Override
158152
public void documentChanged(DocumentEvent e) {
159153
autoInsert(e);
160154
}
161155

162-
/*
163-
* @see ITextInputListener#inputDocumentAboutToBeChanged(IDocument, IDocument)
164-
*/
165156
@Override
166157
public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput) {
167158
if (oldInput == document) {
@@ -172,9 +163,6 @@ public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput
172163
}
173164
}
174165

175-
/*
176-
* @see ITextInputListener#inputDocumentChanged(IDocument, IDocument)
177-
*/
178166
@Override
179167
public void inputDocumentChanged(IDocument oldInput, IDocument newInput) {
180168
document = newInput;

org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/vue/autoinsert/VueAutoInsertReconciler.java

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2022, 2023 Red Hat Inc. and others.
2+
* Copyright (c) 2022, 2024 Red Hat Inc. and others.
33
* This program and the accompanying materials are made
44
* available under the terms of the Eclipse Public License 2.0
55
* which is available at https://www.eclipse.org/legal/epl-2.0/
@@ -135,25 +135,16 @@ private void autoInsert(DocumentEvent event) {
135135
*/
136136
class Listener implements IDocumentListener, ITextInputListener {
137137

138-
/*
139-
* @see IDocumentListener#documentAboutToBeChanged(DocumentEvent)
140-
*/
141138
@Override
142139
public void documentAboutToBeChanged(DocumentEvent e) {
143140
}
144141

145-
/*
146-
* @see IDocumentListener#documentChanged(DocumentEvent)
147-
*/
148142
@Override
149143
public void documentChanged(DocumentEvent e) {
150144
System.out.println(e.toString());
151145
autoInsert(e);
152146
}
153147

154-
/*
155-
* @see ITextInputListener#inputDocumentAboutToBeChanged(IDocument, IDocument)
156-
*/
157148
@Override
158149
public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput) {
159150
if (oldInput == document) {
@@ -164,9 +155,6 @@ public void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput
164155
}
165156
}
166157

167-
/*
168-
* @see ITextInputListener#inputDocumentChanged(IDocument, IDocument)
169-
*/
170158
@Override
171159
public void inputDocumentChanged(IDocument oldInput, IDocument newInput) {
172160
document = newInput;

0 commit comments

Comments
 (0)