File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ object CodeGen {
232232 |
233233 |@FunctionalInterface
234234 |public interface JFunction0 $suffix extends JFunction0 {
235- | abstract ${r.prim} apply $suffix();
235+ | ${r.prim} apply $suffix();
236236 |
237237 | default Object apply() { $applyMethodBody }
238238 |}
@@ -254,7 +254,7 @@ object CodeGen {
254254 |
255255 |@FunctionalInterface
256256 |public interface JFunction1 $suffix extends JFunction1 {
257- | abstract ${r.prim} apply $suffix( ${t.prim} v1);
257+ | ${r.prim} apply $suffix( ${t.prim} v1);
258258 |
259259 | default Object apply(Object t) { $applyMethodBody }
260260 |}
@@ -275,7 +275,7 @@ object CodeGen {
275275 |
276276 |@FunctionalInterface
277277 |public interface JFunction2 $suffix extends JFunction2 {
278- | abstract ${r.prim} apply $suffix( ${t1.prim} v1, ${t2.prim} v2);
278+ | ${r.prim} apply $suffix( ${t1.prim} v1, ${t2.prim} v2);
279279 |
280280 | default Object apply(Object v1, Object v2) { $applyMethodBody }
281281 |}
You can’t perform that action at this time.
0 commit comments