We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd6fe76 commit f03f28cCopy full SHA for f03f28c
http-api/src/main/java/io/avaje/http/api/Ignore.java
@@ -6,7 +6,10 @@
6
import java.lang.annotation.Retention;
7
import java.lang.annotation.Target;
8
9
-/** Mark a field on a BeanParam/FormParam class as not a request parameter of any kind */
+/**
10
+ * Mark a field on a BeanParam/FormParam class as not a request parameter of any kind.
11
+ */
12
@Target(FIELD)
13
@Retention(SOURCE)
-public @interface Ignore {}
14
+public @interface Ignore {
15
+}
http-generator-core/src/main/java/io/avaje/http/generator/core/BeanParamReader.java
@@ -40,7 +40,6 @@ private void read() {
40
}
41
42
private void readField(Element enclosedElement) {
43
-
44
if (IgnorePrism.isPresent(enclosedElement)) {
45
return;
46
0 commit comments