Skip to content

Commit 2d7e1b2

Browse files
authored
ci: formatting (#3698)
1 parent a46e49a commit 2d7e1b2

13 files changed

+5
-14
lines changed

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/CheckForNull.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*
3434
* When this annotation is applied to a method it applies to the method return
3535
* value.
36-
**/
36+
*/
3737
@Documented
3838
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE })
3939
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/DefaultAnnotation.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import java.lang.annotation.RetentionPolicy;
2727
import java.lang.annotation.Target;
2828

29-
3029
/**
3130
* Indicates that all members of the class or package should be annotated with
3231
* the default value of the supplied annotation class.
@@ -40,7 +39,6 @@
4039
*
4140
* @author William Pugh
4241
*/
43-
4442
@Documented
4543
@Target({ ElementType.TYPE, ElementType.PACKAGE })
4644
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/DefaultAnnotationForFields.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
*
4040
* @author William Pugh
4141
*/
42-
4342
@Documented
4443
@Target({ ElementType.TYPE, ElementType.PACKAGE })
4544
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/DefaultAnnotationForMethods.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
*
4040
* @author William Pugh
4141
*/
42-
4342
@Documented
4443
@Target({ ElementType.TYPE, ElementType.PACKAGE })
4544
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/DefaultAnnotationForParameters.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
*
4040
* @author William Pugh
4141
*/
42-
4342
@Documented
4443
@Target({ ElementType.TYPE, ElementType.PACKAGE })
4544
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/Nullable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*
3737
* When this annotation is applied to a method it applies to the method return
3838
* value.
39-
**/
39+
*/
4040
@Documented
4141
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE })
4242
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/OverrideMustInvoke.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* overriding method.
3636
*
3737
* @see edu.umd.cs.findbugs.annotations.When
38-
**/
38+
*/
3939
@Documented
4040
@Target({ ElementType.METHOD })
4141
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/PossiblyNull.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* @deprecated - use CheckForNull instead; the name of which more clearly
3838
* indicates that not only could the value be null, but that good
3939
* coding practice requires that the value be checked for null.
40-
**/
40+
*/
4141
@Documented
4242
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE })
4343
@Retention(RetentionPolicy.CLASS)

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/Priority.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
package edu.umd.cs.findbugs.annotations;
2121

22-
2322
/**
2423
* @author pugh
2524
* @deprecated use {@link Confidence} instead

spotbugs-annotations/src/main/java/edu/umd/cs/findbugs/annotations/SuppressFBWarnings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* It should be used instead of
2929
* {@link edu.umd.cs.findbugs.annotations.SuppressWarnings} to avoid conflicts with
3030
* {@link java.lang.SuppressWarnings}.
31-
*
3231
*/
3332
@Retention(RetentionPolicy.CLASS)
3433
public @interface SuppressFBWarnings {

0 commit comments

Comments
 (0)