提交 12c0f512 编写于 作者: T Tolriq

Do not try to clear a non existent request

上级 8d7beb50
......@@ -220,7 +220,9 @@ public class RequestFutureTarget<T, R> implements FutureTarget<R>, Runnable {
*/
@Override
public void run() {
request.clear();
if (request != null) {
request.clear();
}
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册