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

Unified Diff: packages/crypto/lib/src/hmac.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/lib/src/hash_sink.dart ('k') | packages/crypto/lib/src/md5.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/crypto/lib/src/hmac.dart
diff --git a/packages/crypto/lib/src/hmac.dart b/packages/crypto/lib/src/hmac.dart
index 5caed7521dbe6f58979956c4bdca3bcc60a1a20f..b043a565fe0c71cd582b65b0fb3928cf0461b72a 100644
--- a/packages/crypto/lib/src/hmac.dart
+++ b/packages/crypto/lib/src/hmac.dart
@@ -85,13 +85,13 @@ class _HmacSink extends ByteConversionSink {
@override
void add(List<int> data) {
- if (_isClosed) throw new StateError("HMAC is closed");
+ if (_isClosed) throw new StateError('HMAC is closed');
_innerSink.add(data);
}
@override
void addSlice(List<int> data, int start, int end, bool isLast) {
- if (_isClosed) throw new StateError("HMAC is closed");
+ if (_isClosed) throw new StateError('HMAC is closed');
_innerSink.addSlice(data, start, end, isLast);
}
« no previous file with comments | « packages/crypto/lib/src/hash_sink.dart ('k') | packages/crypto/lib/src/md5.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698