Remove unused variable in TreeController.Renderer.updateBudgetFor(T)

FEA: ItEr76S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2012-04-30 12:41:18 +02:00
parent 219dc532a9
commit 2ad120d615

View file

@ -852,7 +852,6 @@ public abstract class TreeController<T extends ITreeNode<T>> extends
public void updateBudgetFor(T element) {
if (!readOnly && element.isLeaf()) {
Decimalbox decimalbox = budgetDecimalboxByElement.get(element);
Treecell tc = (Treecell) decimalbox.getParent();
decimalbox.invalidate();
refreshBudgetValueForThisNodeAndParents(element);
}