change the method requiresWorkspaceForPolling of BitKeeperSCM.java as follows:
@Override
public boolean requiresWorkspaceForPolling() {
//return false;
return true;
}
recompile the bitkeeperPlugin source code
OK.
root cause:
if requiresWorkspaceForPolling return false, AbstractProject.poll() will call BitKeeperSCM.poll(this, null, null, listener, pollingBaseline); the null parameter causes the NullPointerException.
本文介绍如何通过修改BitKeeper源代码中requiresWorkspaceForPolling方法的返回值来解决AbstractProject.poll方法调用时出现的空指针异常问题。
3250

被折叠的 条评论
为什么被折叠?



