| Index: sdk/lib/crypto/crypto_utils.dart
|
| diff --git a/sdk/lib/crypto/crypto_utils.dart b/sdk/lib/crypto/crypto_utils.dart
|
| index 043ab2130abbaa8b46087671fc2e1b351fc34582..f209bf3885e4e1aac3ff40dbcdd23eb51bfc88f3 100644
|
| --- a/sdk/lib/crypto/crypto_utils.dart
|
| +++ b/sdk/lib/crypto/crypto_utils.dart
|
| @@ -6,7 +6,7 @@ class _LineWrappingStringBuffer {
|
| _LineWrappingStringBuffer(int this._lineLength) : _sb = new StringBuffer();
|
|
|
| void add(String s) {
|
| - if (_lineLength !== null && _currentLineLength == _lineLength) {
|
| + if (_lineLength != null && _currentLineLength == _lineLength) {
|
| _sb.add('\r\n');
|
| _currentLineLength = 0;
|
| }
|
|
|