Revision: 4615
Author: ri...@chromium.org
Date: Fri May  7 05:00:12 2010
Log: Fix presubmit error.
Review URL: http://codereview.chromium.org/1998010
http://code.google.com/p/v8/source/detail?r=4615

Modified:
 /branches/bleeding_edge/src/dateparser.cc

=======================================
--- /branches/bleeding_edge/src/dateparser.cc   Fri May  7 04:53:20 2010
+++ /branches/bleeding_edge/src/dateparser.cc   Fri May  7 05:00:12 2010
@@ -33,11 +33,11 @@
 namespace internal {

 bool DateParser::DayComposer::Write(FixedArray* output) {
-    if (index_ < 1) return false;
-   // Day and month defaults to 1.
-   while (index_ < kSize) {
-       comp_[index_++] = 1;
-   }
+  if (index_ < 1) return false;
+  // Day and month defaults to 1.
+  while (index_ < kSize) {
+    comp_[index_++] = 1;
+  }

   int year = 0;  // Default year is 0 (=> 2000) for KJS compatibility.
   int month = kNone;

--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev

Reply via email to