mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 15:07:45 +00:00
AK: Make "foo"_string infallible
Stop worrying about tiny OOMs. Work towards #20405.
This commit is contained in:
parent
db2a8725c6
commit
34344120f2
181 changed files with 626 additions and 630 deletions
|
@ -38,11 +38,11 @@ ErrorOr<String> CertificateStoreModel::column_name(int column) const
|
|||
{
|
||||
switch (column) {
|
||||
case Column::IssuedTo:
|
||||
return TRY("Issued To"_string);
|
||||
return "Issued To"_string;
|
||||
case Column::IssuedBy:
|
||||
return TRY("Issued By"_string);
|
||||
return "Issued By"_string;
|
||||
case Column::Expire:
|
||||
return TRY("Expiration Date"_string);
|
||||
return "Expiration Date"_string;
|
||||
default:
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue