Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-virkus committed Jun 5, 2023
1 parent 3fad83a commit 41ac974
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion lib/src/codecs/date_codec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -542,5 +542,4 @@ Date and time values occur in several header fields. This section
return dateTime.toLocal();
}
// cSpell:enable

}
10 changes: 6 additions & 4 deletions lib/src/codecs/mail_codec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,12 @@ abstract class MailCodec {
'us-ascii': () => encodingAscii,
'ascii': () => encodingAscii,
};
static final _textDecodersByName = <
String,
String Function(String text, convert.Encoding encoding,
{required bool isHeader})>{
static final _textDecodersByName = <String,
String Function(
String text,
convert.Encoding encoding, {
required bool isHeader,
})>{
'q': quotedPrintable.decodeText,
'quoted-printable': quotedPrintable.decodeText,
'b': base64.decodeText,
Expand Down
1 change: 0 additions & 1 deletion lib/src/mail_conventions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,4 @@ This is no guarantee that the message has been read or understood.''';
/// The `Return-Path` header
static const String headerReturnPath = 'Return-Path';
//static const String header = '';

}

0 comments on commit 41ac974

Please sign in to comment.