Revert "AP_Param: add set_and_save_and_notify()"

This reverts commit 96a2aa485a.
This commit is contained in:
Tom Pittenger 2020-10-06 04:24:05 -07:00 committed by Andrew Tridgell
parent 787d7f5254
commit 150b8653a4

View File

@ -777,19 +777,6 @@ public:
}
}
/// Value setter - set value and save, tell GCS
///
void set_and_save_and_notify(const T &v) {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wfloat-equal"
if (v != _value) {
#pragma GCC diagnostic pop
set(v);
save(true);
notify();
}
}
/// Combined set and save
///
void set_and_save(const T &v) {