brackets lint

This commit is contained in:
Alexander Frick 2024-04-24 08:40:23 -05:00
parent 6e5d6ee64c
commit 0742fa1547

View file

@ -657,11 +657,12 @@ void FlagsState::GetFlagFeatureEntries(
for (const FeatureEntry& entry : feature_entries_) {
std::string desc = entry.visible_description;
if (skip_feature_entry.Run(entry))
if (skip_feature_entry.Run(entry)) {
if (flags::IsFlagExpired(flags_storage, entry.internal_name))
desc.insert(0, " NOTE: THIS FLAG IS EXPIRED AND MAY STOP FUNCTIONING OR BE REMOVED SOON!");
else
continue;
continue;
}
base::Value::Dict data;
data.Set("internal_name", entry.internal_name);