このコードにより、nullポインタ例外が発生しています。理由がわかりません:
private void setSiblings(PhylogenyTree node, Color color) throws InvalidCellNumberException {
PhylogenyTree parent = node.getParent();
for (PhylogenyTree sibling : parent.getChildren()) {
if (! sibling.equals(node)) {
Animal animal = sibling.getAnimal();
BiMap<PhylogenyTree, Integer> inverse = cellInfo.inverse();
int cell = inverse.get(animal); // null pointer exception here
setCellColor(cell, color);
}
}
}
デバッガーで調べましたが、すべてのローカル変数はnullではありません。他にどのようにこれが起こっている可能性がありますか?BiMapはGoogleコレクションからのものです。