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 030324e commit 13e6338Copy full SHA for 13e6338
http-generator-core/src/main/java/io/avaje/http/generator/core/TestClientWriter.java
@@ -106,6 +106,12 @@ private void writeAddRoutes() {
106
}
107
108
private void writeRoute(MethodReader method) {
109
+
110
+ // TODO handle Contexts later
111
+ if (method.params().stream().anyMatch(p -> p.paramType() == ParamType.CONTEXT)) {
112
+ return;
113
+ }
114
115
TypeMirror returnType = method.returnType();
116
var isJstache = ProcessingContext.isJstacheTemplate(returnType);
117
writer.append(" ");
0 commit comments