Skip to content

Commit a219ae8

Browse files
Marcono1234simonresch
authored andcommitted
Format code
1 parent bc84a06 commit a219ae8

File tree

7 files changed

+18
-50
lines changed

7 files changed

+18
-50
lines changed

src/main/java/com/code_intelligence/jazzer/mutation/annotation/DoubleInRange.java

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,20 @@
2525
import java.lang.annotation.Retention;
2626
import java.lang.annotation.Target;
2727

28-
/**
29-
* Generates a {@code double} in the specified range.
30-
*/
28+
/** Generates a {@code double} in the specified range. */
3129
@Target(TYPE_USE)
3230
@Retention(RUNTIME)
3331
@AppliesTo({double.class, Double.class})
3432
@ValidateMinMax
3533
@PropertyConstraint
3634
public @interface DoubleInRange {
37-
/**
38-
* The minimum value of the range, inclusive.
39-
*/
35+
/** The minimum value of the range, inclusive. */
4036
double min() default Double.NEGATIVE_INFINITY;
4137

42-
/**
43-
* The maximum value of the range, inclusive.
44-
*/
38+
/** The maximum value of the range, inclusive. */
4539
double max() default Double.POSITIVE_INFINITY;
4640

47-
/**
48-
* Whether NaN is allowed to be generated.
49-
*/
41+
/** Whether NaN is allowed to be generated. */
5042
boolean allowNaN() default true;
5143

5244
/**

src/main/java/com/code_intelligence/jazzer/mutation/annotation/FloatInRange.java

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,20 @@
2525
import java.lang.annotation.Retention;
2626
import java.lang.annotation.Target;
2727

28-
/**
29-
* Generates a {@code float} in the specified range.
30-
*/
28+
/** Generates a {@code float} in the specified range. */
3129
@Target(TYPE_USE)
3230
@Retention(RUNTIME)
3331
@AppliesTo({float.class, Float.class})
3432
@ValidateMinMax
3533
@PropertyConstraint
3634
public @interface FloatInRange {
37-
/**
38-
* The minimum value of the range, inclusive.
39-
*/
35+
/** The minimum value of the range, inclusive. */
4036
float min() default Float.NEGATIVE_INFINITY;
4137

42-
/**
43-
* The maximum value of the range, inclusive.
44-
*/
38+
/** The maximum value of the range, inclusive. */
4539
float max() default Float.POSITIVE_INFINITY;
4640

47-
/**
48-
* Whether NaN is allowed to be generated.
49-
*/
41+
/** Whether NaN is allowed to be generated. */
5042
boolean allowNaN() default true;
5143

5244
/**

src/main/java/com/code_intelligence/jazzer/mutation/annotation/InRange.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,10 @@
4646
@ValidateMinMax
4747
@PropertyConstraint
4848
public @interface InRange {
49-
/**
50-
* The minimum value of the range, inclusive.
51-
*/
49+
/** The minimum value of the range, inclusive. */
5250
long min() default Long.MIN_VALUE;
5351

54-
/**
55-
* The maximum value of the range, inclusive.
56-
*/
52+
/** The maximum value of the range, inclusive. */
5753
long max() default Long.MAX_VALUE;
5854

5955
/**

src/main/java/com/code_intelligence/jazzer/mutation/annotation/NotNull.java

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

2828
/**
29-
* Generates a not-{@code null} value. By default the mutation framework can generate {@code null} for objects
30-
* (including arrays).
29+
* Generates a not-{@code null} value. By default the mutation framework can generate {@code null}
30+
* for objects (including arrays).
3131
*/
3232
@Target({PARAMETER, TYPE_USE})
3333
@Retention(RUNTIME)

src/main/java/com/code_intelligence/jazzer/mutation/annotation/WithLength.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,10 @@
4848
@ValidateContainerDimensions
4949
@PropertyConstraint
5050
public @interface WithLength {
51-
/**
52-
* The minimum length, inclusive.
53-
*/
51+
/** The minimum length, inclusive. */
5452
int min() default 0;
5553

56-
/**
57-
* The maximum length, inclusive.
58-
*/
54+
/** The maximum length, inclusive. */
5955
int max() default 1000;
6056

6157
/**

src/main/java/com/code_intelligence/jazzer/mutation/annotation/WithSize.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,10 @@
3939
@ValidateContainerDimensions
4040
@PropertyConstraint
4141
public @interface WithSize {
42-
/**
43-
* The minimum size, inclusive.
44-
*/
42+
/** The minimum size, inclusive. */
4543
int min() default 0;
4644

47-
/**
48-
* The maximum size, inclusive.
49-
*/
45+
/** The maximum size, inclusive. */
5046
int max() default 1000;
5147

5248
/**

src/main/java/com/code_intelligence/jazzer/mutation/annotation/WithUtf8Length.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,10 @@
4444
@ValidateContainerDimensions
4545
@PropertyConstraint
4646
public @interface WithUtf8Length {
47-
/**
48-
* The minimum length of the UTF-8 encoding, inclusive.
49-
*/
47+
/** The minimum length of the UTF-8 encoding, inclusive. */
5048
int min() default 0;
5149

52-
/**
53-
* The maximum length of the UTF-8 encoding, inclusive.
54-
*/
50+
/** The maximum length of the UTF-8 encoding, inclusive. */
5551
int max() default 1000;
5652

5753
/**

0 commit comments

Comments
 (0)