Merge "Don't rely on fallthrough in incident_section_gen"

This commit is contained in:
TreeHugger Robot
2018-11-30 20:18:25 +00:00
committed by Android (Google) Code Review

View File

@@ -262,8 +262,9 @@ static bool isDefaultMessageImpl(const Descriptor* descriptor, const Destination
return false;
case FieldDescriptor::TYPE_STRING:
if (getPrivacyFlags(field).patterns_size() != 0) return false;
break;
default:
continue;
break;
}
}
parents->erase(descriptor->full_name());