我在eclipse插件中收到此错误。这是代码:
ICompilationUnit testCU = findTestUnit(type);
// add some stuff to testCU
testCU.commitWorkingCopy(false, null); // error happens here.
答案 0 :(得分:1)
我猜你正在使用this interface。这是方法签名:
void commitWorkingCopy(boolean force, IProgressMonitor monitor) throws JavaModelException;
也许您可以尝试将null
投射到IProgressMonitor
。
另一个想法是查看该方法调用返回的类型,并确保它实现了正确的接口。也许这是不正确的。