Skip to content
Snippets Groups Projects
Commit 3ecc7ef3 authored by Christian Humer's avatar Christian Humer
Browse files

Fix new invalid fallback handlers.

parent 9c874566
No related branches found
No related tags found
No related merge requests found
......@@ -335,7 +335,7 @@ public abstract class PMinMax extends RBuiltinNode {
@SuppressWarnings("unused")
@Fallback
protected RRawVector pMinMaxRaw(Object naRm, RArgsValuesAndNames args) {
protected RRawVector pMinMaxRaw(Object naRm, Object args) {
throw RError.error(NO_CALLER, RError.Message.INVALID_INPUT_TYPE);
}
......
......@@ -176,7 +176,7 @@ public abstract class Unlist extends RBuiltinNode {
@SuppressWarnings("unused")
@Fallback
protected Object unlist(Object o, boolean recursive, boolean useNames) {
protected Object unlist(Object o, Object recursive, Object useNames) {
return o;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment