refactor: Use single quotes

This commit is contained in:
Christian Pauly 2022-06-07 08:53:14 +02:00
parent 4692c95910
commit f1751a0744
2 changed files with 2 additions and 2 deletions

View File

@ -657,7 +657,7 @@ class Event extends MatrixEvent {
removeMarkdown: removeMarkdown);
}
@Deprecated("Use getLocalizedBodyAsync")
@Deprecated('Use getLocalizedBodyAsync')
String getLocalizedBody(MatrixLocalizations i18n,
{bool withSenderNamePrefix = false,
bool hideReply = false,

View File

@ -1417,7 +1417,7 @@ class Room {
}
@Deprecated(
"The method was renamed unsafeGetUserFromMemoryOrFallback. Please prefer requestParticipants.")
'The method was renamed unsafeGetUserFromMemoryOrFallback. Please prefer requestParticipants.')
User getUserByMXIDSync(String mxID) {
return unsafeGetUserFromMemoryOrFallback(mxID);
}