Skip to content

Commit e543ba2

Browse files
EcljpseB0Tjukzi
authored andcommitted
Remove blank Javadoc 3
This commit cleans up Javadoc that does not add information. It resolves ecj warnings: `Javadoc: Description expected after ...` It helps to prevent future empty javadoc by disabling missingJavaDoc warnings. This resolves `Javadoc: Missing ...` The modification is a result of regular expression search&replace: in files `*.java` `^[\s]*\*[\s]*(@return|@param[\s]*[^\s]+|@throws[\s]*[^\s]+)\R([\s]*\*[\s]*@|[\s]*\*/\R)` ->`$2` `^([\s]*\*[\s]*\R)([\s]*\*/\R)` ->`$2` `^[\S\t ]*/\*\*\R[\s]*\*/\R` ->`` in files `org.eclipse.jdt.core.prefs` `org\.eclipse\.jdt\.core\.compiler\.problem\.missingJavadoc(Comments|Tags)\=[^\s]*` ->`org\.eclipse\.jdt\.core\.compiler\.problem\.missingJavadoc$1\=ignore`
1 parent ed93242 commit e543ba2

File tree

749 files changed

+75
-3379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

749 files changed

+75
-3379
lines changed

bundles/org.eclipse.core.commands/.settings/org.eclipse.jdt.core.prefs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
6868
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
6969
org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
7070
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
71-
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=warning
71+
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
7272
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled
7373
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
74-
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning
74+
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=ignore
7575
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled
7676
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=public
7777
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning

bundles/org.eclipse.core.commands/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.core.commands
5-
Bundle-Version: 3.11.200.qualifier
5+
Bundle-Version: 3.11.300.qualifier
66
Bundle-Vendor: %providerName
77
Bundle-Localization: plugin
88
Export-Package: org.eclipse.core.commands,

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/Category.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ private final void fireCategoryChanged(final CategoryEvent categoryEvent) {
128128
*
129129
* @param categoryListener
130130
* The listener to be removed; must not be <code>null</code>.
131-
*
132131
*/
133132
public final void removeCategoryListener(
134133
final ICategoryListener categoryListener) {

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/Command.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,6 @@ public boolean isHandled() {
877877
*
878878
* @param commandListener
879879
* The listener to be removed; must not be <code>null</code>.
880-
*
881880
*/
882881
public void removeCommandListener(final ICommandListener commandListener) {
883882
if (commandListener == null) {
@@ -892,7 +891,6 @@ public void removeCommandListener(final ICommandListener commandListener) {
892891
*
893892
* @param executionListener
894893
* The listener to be removed; must not be <code>null</code>.
895-
*
896894
*/
897895
public void removeExecutionListener(final IExecutionListener executionListener) {
898896
if (executionListener == null) {

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/ParameterValuesException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
* </p>
2727
*
2828
* @since 3.1
29-
*
3029
*/
3130
public final class ParameterValuesException extends CommandException {
3231

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/internal/util/Tracing.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* <p>
2222
* Clients must not extend or instantiate this class.
2323
* </p>
24-
*
2524
*/
2625
public final class Tracing {
2726

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/DefaultOperationHistory.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ public final class DefaultOperationHistory implements IOperationHistory {
154154
* An operation that is "absorbing" all other operations while it is open.
155155
* When this is not null, other operations added or executed are added to
156156
* this composite.
157-
*
158157
*/
159158
private ICompositeOperation openComposite;
160159

@@ -222,7 +221,6 @@ public void add(IUndoableOperation operation) {
222221
*
223222
* @param approver
224223
* the IOperationApprover to be added as an approver.
225-
*
226224
*/
227225

228226
@Override
@@ -334,9 +332,6 @@ public void dispose(IUndoContext context, boolean flushUndo, boolean flushRedo,
334332

335333
/**
336334
* Perform the redo. All validity checks have already occurred.
337-
*
338-
* @param monitor
339-
* @param operation
340335
*/
341336
private IStatus doRedo(IProgressMonitor monitor, IAdaptable info, IUndoableOperation operation)
342337
throws ExecutionException {
@@ -394,9 +389,6 @@ private IStatus doRedo(IProgressMonitor monitor, IAdaptable info, IUndoableOpera
394389

395390
/**
396391
* Perform the undo. All validity checks have already occurred.
397-
*
398-
* @param monitor
399-
* @param operation
400392
*/
401393
private IStatus doUndo(IProgressMonitor monitor, IAdaptable info, IUndoableOperation operation)
402394
throws ExecutionException {

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IAdvancedUndoableOperation.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
* </p>
3434
*
3535
* @since 3.1
36-
*
3736
*/
3837
public interface IAdvancedUndoableOperation {
3938

@@ -53,7 +52,6 @@ public interface IAdvancedUndoableOperation {
5352
* @param event
5453
* the event that is about to be sent with the pending
5554
* notification
56-
*
5755
*/
5856
void aboutToNotify(OperationHistoryEvent event);
5957

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IAdvancedUndoableOperation2.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* </p>
3030
*
3131
* @since 3.3
32-
*
3332
*/
3433
public interface IAdvancedUndoableOperation2 {
3534
/**

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IContextReplacingOperation.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* another.
2222
*
2323
* @since 3.2
24-
*
2524
*/
2625
public interface IContextReplacingOperation {
2726

@@ -34,7 +33,6 @@ public interface IContextReplacingOperation {
3433
*
3534
* @param original the undo context which is to be replaced
3635
* @param replacement the undo context which is replacing the original
37-
*
3836
*/
3937
void replaceContext(IUndoContext original, IUndoContext replacement);
4038
}

0 commit comments

Comments
 (0)