简单地说,我想检查一个元素是否从列表中删除,然后再做一些操作。以下是我的代码片段:
(...)
private CollectionUtils removed;
public void subscription() {
if (CollectionUtils.isEmpty(save)) {
System.out.println("blabla");
JsfUtils.addTranslatedMessageToTarget(FacesMessage.SEVERITY_INFO, null, "bla");
} else if (CollectionUtils.subtract(save, removed)){ //Check if element is deleted
System.out.println(removed + " blablaca");
} else {
System.out.println("blabla");
}
}
我编辑并剪切了一些代码,因为它适用于我工作的公司。在减去时,他建议将收集类型转换为" Collection",这对我没有任何意义。作为Exception,它指出了一个nullpointer异常。
由于