AP_Param: remove confusing comment

The code refered to is within is_sentinel - and it has a copy of the
comment
This commit is contained in:
Peter Barker 2021-03-17 11:42:38 +11:00 committed by Peter Barker
parent e567cca230
commit 936aa63135

View File

@ -1468,8 +1468,6 @@ bool AP_Param::load_all()
while (ofs < _storage.size()) {
_storage.read_block(&phdr, ofs, sizeof(phdr));
// note that this is an || not an && for robustness
// against power off while adding a variable
if (is_sentinal(phdr)) {
// we've reached the sentinal
sentinal_offset = ofs;