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

Unified Diff: packages/crypto/lib/src/hash_sink.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 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 | « packages/crypto/analysis_options.yaml ('k') | packages/crypto/lib/src/hmac.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/crypto/lib/src/hash_sink.dart
diff --git a/packages/crypto/lib/src/hash_sink.dart b/packages/crypto/lib/src/hash_sink.dart
index 369d3e3e970b60ef85a0abc5adeac2adc8feabe2..ef38780458f5a28943ced8b629f999a0ae8d2e2e 100644
--- a/packages/crypto/lib/src/hash_sink.dart
+++ b/packages/crypto/lib/src/hash_sink.dart
@@ -127,7 +127,7 @@ abstract class HashSink implements Sink<List<int>> {
if (_lengthInBytes > _maxMessageLengthInBytes) {
throw new UnsupportedError(
- "Hashing is unsupported for messages with more than 2^64 bits.");
+ 'Hashing is unsupported for messages with more than 2^64 bits.');
}
var lengthInBits = _lengthInBytes * bitsPerByte;
« no previous file with comments | « packages/crypto/analysis_options.yaml ('k') | packages/crypto/lib/src/hmac.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698