| Index: runtime/bin/mime_multipart_parser.dart
|
| diff --git a/runtime/bin/mime_multipart_parser.dart b/runtime/bin/mime_multipart_parser.dart
|
| index ae455186994df11bb55a9abf5128b054f480b4c9..b0af4ad27b4ba707190a0f4351a221b1af8efbed 100644
|
| --- a/runtime/bin/mime_multipart_parser.dart
|
| +++ b/runtime/bin/mime_multipart_parser.dart
|
| @@ -39,7 +39,7 @@ class _MimeMultipartParser {
|
| // [boundary]. The boundary should be as specified in the content
|
| // type parameter, that is without the -- prefix.
|
| _MimeMultipartParser(String boundary) {
|
| - List<int> charCodes = boundary.charCodes();
|
| + List<int> charCodes = boundary.charCodes;
|
| _boundary = new List<int>(4 + charCodes.length);
|
| // Set-up the matching boundary preceding it with CRLF and two
|
| // dashes.
|
|
|