提交 f20687d0 编写于 作者: S Sam

Merge pull request #401 from Tolriq/master

Do not try to clear a non existent request
......@@ -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.
先完成此消息的编辑!
想要评论请 注册