Remove an unnecessary check.

updateProperties() also checks if isInPage(), so it was redundant.

FEA: ItEr75S04BugFixing
This commit is contained in:
Jacobo Aragunde Pérez 2011-12-05 16:20:08 +01:00
parent 3150f88f1c
commit 08b11d7ef4

View file

@ -238,9 +238,7 @@ public class TaskComponent extends Div implements AfterCompose {
@Override
public void propertyChange(PropertyChangeEvent evt) {
if (isInPage()) {
updateProperties();
}
updateProperties();
}
};
}