From 2101f9bf6a764747ad29277acbe3d197bb565640 Mon Sep 17 00:00:00 2001 From: Lars Vogel Date: Tue, 13 May 2025 16:32:41 +0200 Subject: [PATCH] Whitespace clean-up in pde ds Using the JDT clean-up for unnecessary whitespace --- .../pde/ds/internal/annotations/AnnotationVisitor.java | 8 ++++---- .../pde/ds/internal/annotations/DSAnnotationVersion.java | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/AnnotationVisitor.java b/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/AnnotationVisitor.java index ca059711d5..faa42e7917 100644 --- a/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/AnnotationVisitor.java +++ b/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/AnnotationVisitor.java @@ -998,7 +998,7 @@ private void processComponent(IDSModel model, TypeDeclaration type, ITypeBinding String modified = null; IMethodBinding modifiedMethod = null; Annotation modifiedAnnotation = null; - + for (MethodDeclaration method : type.getMethods()) { @@ -2215,7 +2215,7 @@ private IMethodBinding findLifeCycleMethod(ITypeBinding componentClass, String m /** * An injectable constructor is one annotated with @Activate - * + * * @param type * @param problemReporter2 * @return @@ -2266,7 +2266,7 @@ private static boolean isComponentPropertyType(IAnnotationBinding binding) { * Check if the given {@link ITypeBinding} is an Activation * Object - * + * * @param param the binding to check * @return true if this is an Activation Object, false * otherwise @@ -2283,7 +2283,7 @@ private static boolean isActivationObject(ITypeBinding param) { * Check if the given {@link ITypeBinding} is a Component * Property Type - * + * * @param param the binding to check * @return true if this is a Component Property Type * false otherwise diff --git a/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/DSAnnotationVersion.java b/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/DSAnnotationVersion.java index 5079b36c07..7c9a5a624b 100644 --- a/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/DSAnnotationVersion.java +++ b/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/DSAnnotationVersion.java @@ -25,7 +25,7 @@ public enum DSAnnotationVersion { V1_2("1.2", "http://www.osgi.org/xmlns/scr/v1.2.0"), //$NON-NLS-1$ V1_3("1.3", "http://www.osgi.org/xmlns/scr/v1.3.0"), //$NON-NLS-1$ - + V1_4("1.4", "http://www.osgi.org/xmlns/scr/v1.4.0"), //$NON-NLS-1$ V1_5("1.5", "http://www.osgi.org/xmlns/scr/v1.5.0"); //$NON-NLS-1$ @@ -54,7 +54,7 @@ public DSAnnotationVersion max(DSAnnotationVersion other) { /** * Compares this version with another one - * + * * @param other * @return true if this version is higher or equal to this version */