This commit is contained in:
wentch
2016-01-18 12:30:06 +08:00
parent f298dc1119
commit 916cf3086d

View File

@@ -18,7 +18,7 @@ import java.io.IOException;
* @param <R> Request的子类型
* @param <P> Response的子类型
*/
public abstract class Servlet<C extends Context, R extends Request<? extends C>, P extends Response<R>> {
public abstract class Servlet<C extends Context, R extends Request<C>, P extends Response<R>> {
public void init(C context, AnyValue config) {
}