[Bug #1208] Remove some generic catchs that was preventing to detect previous issue
FEA: ItEr75S04BugFixing
This commit is contained in:
parent
5209049643
commit
3ed83f8f74
1 changed files with 4 additions and 16 deletions
|
|
@ -253,11 +253,7 @@ public class TaskComponent extends Div implements AfterCompose {
|
|||
@Override
|
||||
public void propertyChange(PropertyChangeEvent evt) {
|
||||
if (isInPage() && !(task instanceof Milestone)) {
|
||||
try {
|
||||
updateCompletionAdvance();
|
||||
} catch (Exception e) {
|
||||
LOG.error("failure at updating completion", e);
|
||||
}
|
||||
updateCompletionAdvance();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
@ -271,11 +267,7 @@ public class TaskComponent extends Div implements AfterCompose {
|
|||
@Override
|
||||
public void propertyChange(PropertyChangeEvent evt) {
|
||||
if (isInPage() && !(task instanceof Milestone)) {
|
||||
try {
|
||||
updateCompletionReportedHours();
|
||||
} catch (Exception e) {
|
||||
LOG.error("failure at updating completion", e);
|
||||
}
|
||||
updateCompletionReportedHours();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
@ -486,12 +478,8 @@ public class TaskComponent extends Div implements AfterCompose {
|
|||
if (task instanceof Milestone) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
updateCompletionReportedHours();
|
||||
updateCompletionAdvance();
|
||||
} catch (Exception e) {
|
||||
LOG.error("failure at updating completion", e);
|
||||
}
|
||||
updateCompletionReportedHours();
|
||||
updateCompletionAdvance();
|
||||
}
|
||||
|
||||
private void updateCompletionReportedHours() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue