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

Unified Diff: pkg/crypto/lib/src/md5.dart

Issue 169363008: pkg/crypto: move tests to unittest package (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: oops Created 6 years, 10 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
Index: pkg/crypto/lib/src/md5.dart
diff --git a/pkg/crypto/lib/src/md5.dart b/pkg/crypto/lib/src/md5.dart
index 6acf384c62278257208084f2b5a3d435725dded5..07b567ef887a90d2be1aa7c9b01d22afc5cbb0d7 100644
--- a/pkg/crypto/lib/src/md5.dart
+++ b/pkg/crypto/lib/src/md5.dart
@@ -11,7 +11,7 @@ part of crypto;
* required for backwards compatibility.
*/
class MD5 extends _HashBase {
- MD5() : super(16, 4, false) {
+ MD5(): super(16, 4, false) {
floitsch 2014/02/18 10:29:22 I usually keep the space. This looked gtm.
kevmoo 2014/02/18 14:23:27 Welcome to the world of standard Dart style. :-)
_h[0] = 0x67452301;
_h[1] = 0xefcdab89;
_h[2] = 0x98badcfe;

Powered by Google App Engine
This is Rietveld 408576698