Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Unified Diff: lib/src/bytes_builder.dart

Issue 1046573002: pkg/http_parser: format code, prepare for +6 release (Closed) Base URL: https://github.com/dart-lang/http_parser.git@master
Patch Set: cl feedback Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/http_date.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/bytes_builder.dart
diff --git a/lib/src/bytes_builder.dart b/lib/src/bytes_builder.dart
index 446e1751baa4aeaa8978235878eee3b979f932d8..68af4170bdcea2db4873a75727892edc44cf79cb 100644
--- a/lib/src/bytes_builder.dart
+++ b/lib/src/bytes_builder.dart
@@ -86,7 +86,6 @@ abstract class BytesBuilder {
void clear();
}
-
class _CopyingBytesBuilder implements BytesBuilder {
// Start with 1024 bytes.
static const int _INIT_SIZE = 1024;
@@ -158,7 +157,6 @@ class _CopyingBytesBuilder implements BytesBuilder {
}
}
-
class _BytesBuilder implements BytesBuilder {
int _length = 0;
final List _chunks = [];
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/http_date.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698