Chromium Code Reviews| Index: pkg/crypto/lib/crypto.dart |
| diff --git a/pkg/crypto/lib/crypto.dart b/pkg/crypto/lib/crypto.dart |
| index ee11c2587e3001b93886e99ac7065596309b72d5..5125912e3f8f59b3d8cdeb5feea9dff79c423a92 100644 |
| --- a/pkg/crypto/lib/crypto.dart |
| +++ b/pkg/crypto/lib/crypto.dart |
| @@ -35,7 +35,7 @@ abstract class Hash { |
| /** |
| * Add a list of bytes to the hash computation. |
| */ |
| - add(List<int> data); |
| + void add(List<int> data); |
| /** |
| * Finish the hash computation and extract the message digest as |