Fix NullPointerException in highlightDaysOnCalendar method
FEA: ItEr75S04BugFixing
This commit is contained in:
parent
a9defb5446
commit
d17eb8c0fc
1 changed files with 3 additions and 1 deletions
|
|
@ -120,7 +120,9 @@ public class BaseCalendarCRUDController extends GenericForwardComposer {
|
|||
}
|
||||
|
||||
private void highlightDaysOnCalendar() {
|
||||
editionController.highlightDaysOnCalendar();
|
||||
if (editionController != null) {
|
||||
editionController.highlightDaysOnCalendar();
|
||||
}
|
||||
}
|
||||
|
||||
public void save() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue