Skip to content

Commit f03f28c

Browse files
committed
Format only change on Ignore
1 parent cd6fe76 commit f03f28c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

http-api/src/main/java/io/avaje/http/api/Ignore.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
import java.lang.annotation.Retention;
77
import java.lang.annotation.Target;
88

9-
/** Mark a field on a BeanParam/FormParam class as not a request parameter of any kind */
9+
/**
10+
* Mark a field on a BeanParam/FormParam class as not a request parameter of any kind.
11+
*/
1012
@Target(FIELD)
1113
@Retention(SOURCE)
12-
public @interface Ignore {}
14+
public @interface Ignore {
15+
}

http-generator-core/src/main/java/io/avaje/http/generator/core/BeanParamReader.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ private void read() {
4040
}
4141

4242
private void readField(Element enclosedElement) {
43-
4443
if (IgnorePrism.isPresent(enclosedElement)) {
4544
return;
4645
}

0 commit comments

Comments
 (0)