Skip to content

Commit

Permalink
Merge pull request #26429 from brave/webcompat-notreached
Browse files Browse the repository at this point in the history
Update `NOTREACHED` calls in webcompat reporter component
  • Loading branch information
DJAndries authored Nov 7, 2024
2 parents 3c9de0e + 113de07 commit 0693065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/webcompat_reporter/browser/fields.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const char* GetAdBlockModeString(
case brave_shields::mojom::AdBlockMode::ALLOW:
return kAllow;
}
NOTREACHED_IN_MIGRATION();
NOTREACHED();
}

const char* GetFingerprintModeString(
Expand All @@ -41,7 +41,7 @@ const char* GetFingerprintModeString(
case brave_shields::mojom::FingerprintMode::ALLOW_MODE:
return kAllow;
}
NOTREACHED_IN_MIGRATION();
NOTREACHED();
}

} // namespace webcompat_reporter

0 comments on commit 0693065

Please sign in to comment.