File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
jooby/src/main/java/org/jooby Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ parser((type, ctx) -> {
132132 return ctx. param(values - > new MyType (values. get(0 )));
133133 }
134134 // no luck! move to next converter
135- return next . next();
135+ return ctx . next();
136136});
137137
138138get(" /" , req - > {
Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ interface Context extends Builder {
567567 * return ctx.param(values {@literal ->} new MyType(values.get(0)));
568568 * }
569569 * // no luck! move next
570- * return next .next();
570+ * return ctx .next();
571571 * }
572572 * </pre>
573573 *
@@ -583,7 +583,7 @@ interface Context extends Builder {
583583 * .get(((ParameterizedType) toType.getType()).getActualTypeArguments()[0]);
584584 *
585585 * // Ask param converter to resolve the new/next type.
586- * Object result = next .next(paramType);
586+ * Object result = ctx .next(paramType);
587587 * return new MyType(result);
588588 * }
589589 * // no luck! move next
You can’t perform that action at this time.
0 commit comments