Skip to content

Commit 86381b0

Browse files
committed
HV-2051 Clean up some extra blank lines
1 parent a96de99 commit 86381b0

File tree

49 files changed

+54
-65
lines changed

Some content is hidden

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

49 files changed

+54
-65
lines changed

annotation-processor/src/main/java/org/hibernate/validator/ap/internal/AbstractElementVisitor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,3 @@ else if ( issue.isWarning() ) {
6262
messager.reportWarnings( warnings );
6363
}
6464
}
65-

annotation-processor/src/main/java/org/hibernate/validator/ap/internal/checks/GetterCheck.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,3 @@ private boolean isJavaBeanGetterName(String methodName) {
6363
}
6464

6565
}
66-

annotation-processor/src/test/java/org/hibernate/validator/ap/testmodel/overriding/MethodOverridingTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,4 +475,3 @@ public boolean someMethod(String someParameter) {
475475
}
476476
}
477477
}
478-

cdi/src/test/java/org/hibernate/validator/test/cdi/internal/ValidationExtensionTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,3 @@ public void addDefinitionError(Throwable t) {
237237
};
238238
}
239239
}
240-

documentation/src/test/java/org/hibernate/validator/referenceguide/chapter02/objectgraph/Car.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ public class Car {
2121
//...
2222
}
2323
//end::include[]
24-

documentation/src/test/java/org/hibernate/validator/referenceguide/chapter06/CheckCase.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* License: Apache License, Version 2.0
55
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
66
*/
7+
//spotless:off
78
//tag::include[]
89
package org.hibernate.validator.referenceguide.chapter06;
910

@@ -25,6 +26,7 @@
2526

2627
import org.hibernate.validator.referenceguide.chapter06.CheckCase.List;
2728

29+
//spotless:on
2830
//tag::include[]
2931
@Target({ FIELD, METHOD, PARAMETER, ANNOTATION_TYPE, TYPE_USE })
3032
@Retention(RUNTIME)

documentation/src/test/java/org/hibernate/validator/referenceguide/chapter06/classlevel/ValidPassengerCount.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* License: Apache License, Version 2.0
55
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
66
*/
7+
//spotless:off
78
//tag::include[]
89
package org.hibernate.validator.referenceguide.chapter06.classlevel;
910

@@ -19,6 +20,7 @@
1920
import jakarta.validation.Constraint;
2021
import jakarta.validation.Payload;
2122

23+
//spotless:on
2224
//tag::include[]
2325
@Target({ TYPE, ANNOTATION_TYPE })
2426
@Retention(RUNTIME)

documentation/src/test/java/org/hibernate/validator/referenceguide/chapter06/constraintcomposition/ValidLicensePlate.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* License: Apache License, Version 2.0
55
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
66
*/
7+
//spotless:off
78
//tag::include[]
89
package org.hibernate.validator.referenceguide.chapter06.constraintcomposition;
910

@@ -23,6 +24,7 @@
2324
import jakarta.validation.constraints.NotNull;
2425
import jakarta.validation.constraints.Size;
2526

27+
//spotless:on
2628
//tag::include[]
2729
@NotNull
2830
@Size(min = 2, max = 14)

documentation/src/test/java/org/hibernate/validator/referenceguide/chapter06/constraintvalidatorpayload/ZipCodeValidator.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* License: Apache License, Version 2.0
55
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
66
*/
7+
//spotless:off
78
//tag::include[]
89
package org.hibernate.validator.referenceguide.chapter06.constraintvalidatorpayload;
910

@@ -13,6 +14,7 @@
1314

1415
import org.hibernate.validator.constraintvalidation.HibernateConstraintValidatorContext;
1516

17+
//spotless:on
1618
//tag::include[]
1719
public class ZipCodeValidator implements ConstraintValidator<ZipCode, String> {
1820

documentation/src/test/java/org/hibernate/validator/referenceguide/chapter06/crossparameter/ConsistentDateParameters.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* License: Apache License, Version 2.0
55
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
66
*/
7+
//spotless:off
78
//tag::include[]
89
package org.hibernate.validator.referenceguide.chapter06.crossparameter;
910

@@ -20,6 +21,7 @@
2021
import jakarta.validation.Constraint;
2122
import jakarta.validation.Payload;
2223

24+
//spotless:on
2325
//tag::include[]
2426
@Constraint(validatedBy = ConsistentDateParametersValidator.class)
2527
@Target({ METHOD, CONSTRUCTOR, ANNOTATION_TYPE })

0 commit comments

Comments
 (0)