Skip to content
Snippets Groups Projects
Commit 9fccb17a authored by Tathagata Das's avatar Tathagata Das
Browse files

Removed Function3.call() based on Josh's comment.

parent fe8626ef
No related branches found
No related tags found
No related merge requests found
......@@ -29,8 +29,6 @@ import java.io.Serializable;
public abstract class Function3<T1, T2, T3, R> extends WrappedFunction3<T1, T2, T3, R>
implements Serializable {
public abstract R call(T1 t1, T2 t2, T3 t3) throws Exception;
public ClassManifest<R> returnType() {
return (ClassManifest<R>) ClassManifest$.MODULE$.fromClass(Object.class);
}
......
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