Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -135,7 +135,7 @@ void SnapManager::ParameterObserver::subscribeToParameters()
|
||||
}
|
||||
catch (const Base::ValueError& e) { // ensure that if parameter strings are not well-formed,
|
||||
// the exception is not propagated
|
||||
Base::Console().DeveloperError("SnapManager", "Malformed parameter string: %s\n", e.what());
|
||||
Base::Console().developerError("SnapManager", "Malformed parameter string: %s\n", e.what());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -148,7 +148,7 @@ void SnapManager::ParameterObserver::unsubscribeToParameters()
|
||||
catch (const Base::ValueError&
|
||||
e) { // ensure that if parameter strings are not well-formed, the program is not
|
||||
// terminated when calling the noexcept destructor.
|
||||
Base::Console().DeveloperError("SnapManager", "Malformed parameter string: %s\n", e.what());
|
||||
Base::Console().developerError("SnapManager", "Malformed parameter string: %s\n", e.what());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user