Chromium Code Reviews| Index: lib/src/sha1.dart |
| diff --git a/lib/src/sha1.dart b/lib/src/sha1.dart |
| index 6e8ea4823f3963381defbcf54cc02825e6f1b4b7..3946484172fc54ba44fed78c0c46d53031e66f31 100644 |
| --- a/lib/src/sha1.dart |
| +++ b/lib/src/sha1.dart |
| @@ -11,7 +11,9 @@ class SHA1 extends _HashBase { |
| final Uint32List _w; |
| // Construct a SHA1 hasher object. |
| - SHA1() : _w = new Uint32List(80), super(16, 5, true) { |
| + SHA1() |
| + : _w = new Uint32List(80), |
| + super(16, 5, true) { |
| _h[0] = 0x67452301; |
| _h[1] = 0xEFCDAB89; |
| _h[2] = 0x98BADCFE; |