Index: samples/calculator/calculator.dart |
diff --git a/samples/calculator/calculator.dart b/samples/calculator/calculator.dart |
index 397561686f74315e7de45adc7c530b8dd142c524..715a7f9b4f109655382287ffcdeb5106b2a25cb4 100644 |
--- a/samples/calculator/calculator.dart |
+++ b/samples/calculator/calculator.dart |
@@ -256,7 +256,6 @@ void processNumber(int code, Element key) { |
// TODO(terry): Need to fix this in Dart library. |
// If there's already a . in our current register don't allow a second period. |
- // Math.parseDouble validates that 2.2.3.4.5 is okay and returns 2.2 |
if (char == '.' && currentRegister.indexOf('.') != -1) { |
// Signal dot is valid more than once for a number. |
flickerKey(padUI.keyDot, '-error'); |