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

Unified Diff: lib/src/hmac.dart

Issue 1350913002: Run the formatter over crypto. (Closed) Base URL: git@github.com:dart-lang/crypto.git@master
Patch Set: Fix a missing value. Created 5 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 | « lib/src/hash_utils.dart ('k') | lib/src/md5.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/hmac.dart
diff --git a/lib/src/hmac.dart b/lib/src/hmac.dart
index a4ea193b9b137d697a2dd51a4002094909d943d0..4cdf81fafb0da10f228a40f8422d7e233da880a9 100644
--- a/lib/src/hmac.dart
+++ b/lib/src/hmac.dart
@@ -20,7 +20,7 @@ class HMAC {
/**
* Create an [HMAC] object from a [Hash] and a key.
*/
- HMAC(Hash this._hash, List<int> this._key): _message = [];
+ HMAC(Hash this._hash, List<int> this._key) : _message = [];
/**
* Add a list of bytes to the message.
« no previous file with comments | « lib/src/hash_utils.dart ('k') | lib/src/md5.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698