Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca6b608c authored by Joe Onorato's avatar Joe Onorato Committed by android-build-merger
Browse files

Merge "Merge "Do not include specific_mention sections in bugreports either."...

Merge "Merge "Do not include specific_mention sections in bugreports either." into qt-dev am: da7f7e0a am: 758800ef" into qt-r1-dev-plus-aosp
am: 8aa3700f

Change-Id: I059a0bb7a85773dc562b09546fa1c49316b0a812
parents 6f7193f0 8aa3700f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -564,7 +564,8 @@ status_t IncidentService::dump(int fd, const Vector<String16>& args) {
    int skipped[] = SKIPPED_SECTIONS;
    for (const Section** section = SECTION_LIST; *section; section++) {
        const int id = (*section)->id;
        if (std::find(std::begin(skipped), std::end(skipped), id) == std::end(skipped)) {
        if (std::find(std::begin(skipped), std::end(skipped), id) == std::end(skipped)
                && !section_requires_specific_mention(id)) {
            incidentArgs.addSection(id);
        }
    }