activateIfInactive method
Ensures the goal is activated if it is inactive.
Implementation
Goal activateIfInactive() {
if ( inactive == true ) {
status = GoalStatus.active;
activate();
}
return this;
}
Ensures the goal is activated if it is inactive.
Goal activateIfInactive() {
if ( inactive == true ) {
status = GoalStatus.active;
activate();
}
return this;
}