Commit 99296ae8 authored by 王亮's avatar 王亮

remove unused code.

parent 59d60828
package cn.quantgroup.xyqb.function;
/**
* Created by Miraculous on 2016/12/29.
*/
public interface NonArgFunction {
void apply();
}
package cn.quantgroup.xyqb.function;
/**
* Created by Miraculous on 2016/12/29.
*/
public interface OneArgFunction<S> {
void apply(S t);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment