Reviewers: Lasse Reichstein,

Message:
TBR: lrn

Description:
Fix presubmit error.

Please review this at http://codereview.chromium.org/1998010/show

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/dateparser.cc


Index: src/dateparser.cc
===================================================================
--- src/dateparser.cc   (revision 4613)
+++ src/dateparser.cc   (working copy)
@@ -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