Fix NoSuchMethodError on FunctionReference#init
This commit is contained in:
@@ -30,6 +30,11 @@ public abstract class FunctionReference
|
|||||||
this.arity = arity;
|
this.arity = arity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated // preserved for binary compatibility with M12 release
|
||||||
|
public FunctionReference() {
|
||||||
|
this.arity = 0;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getArity() {
|
public int getArity() {
|
||||||
return arity;
|
return arity;
|
||||||
|
|||||||
Reference in New Issue
Block a user