Merge "Fix changes where the default value was always being returned for many of the robot state status functions."

This commit is contained in:
Brad Miller (WPI)
2014-09-24 08:03:42 -07:00
committed by Gerrit Code Review

View File

@@ -15,28 +15,28 @@ bool RobotState::IsDisabled() {
bool RobotState::IsEnabled() {
if (impl != 0) {
impl->IsEnabled();
return impl->IsEnabled();
}
return false;
}
bool RobotState::IsOperatorControl() {
if (impl != 0) {
impl->IsOperatorControl();
return impl->IsOperatorControl();
}
return true;
}
bool RobotState::IsAutonomous() {
if (impl != 0) {
impl->IsAutonomous();
return impl->IsAutonomous();
}
return false;
}
bool RobotState::IsTest() {
if (impl != 0) {
impl->IsTest();
return impl->IsTest();
}
return false;
}