Index: runtime/lib/string_patch.dart |
diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart |
index ceef2cb975aba944d5f16cbc98db63fbf70bb184..89dce3e56c87fd048a806f989cc01ae4952a8d2c 100644 |
--- a/runtime/lib/string_patch.dart |
+++ b/runtime/lib/string_patch.dart |
@@ -514,7 +514,7 @@ class _OneByteString extends _StringBase implements String { |
bool _isWhitespace(int codePoint) { |
return |
(codePoint == 32) || // Space. |
- ((9 <= codePoint) && (codePoint <= 13)) || // CR, LF, TAB, etc. |
+ ((9 <= codePoint) && (codePoint <= 13)) || // CR, LF, TAB, etc. |
(codePoint == 0xA0); // NBSP. |
} |