| Index: base/time/time.cc
|
| diff --git a/base/time/time.cc b/base/time/time.cc
|
| index 8b1a6d783baf329679d4c091e7093fb8bc302d4e..76ffeb744112d1909afa9b488bcfa277950225bb 100644
|
| --- a/base/time/time.cc
|
| +++ b/base/time/time.cc
|
| @@ -261,14 +261,6 @@
|
| result_time += kTimeTToMicrosecondsOffset;
|
| *parsed_time = Time(result_time);
|
| return true;
|
| -}
|
| -
|
| -// static
|
| -bool Time::ExplodedMostlyEquals(const Exploded& lhs, const Exploded& rhs) {
|
| - return lhs.year == rhs.year && lhs.month == rhs.month &&
|
| - lhs.day_of_month == rhs.day_of_month && lhs.hour == rhs.hour &&
|
| - lhs.minute == rhs.minute && lhs.second == rhs.second &&
|
| - lhs.millisecond == rhs.millisecond;
|
| }
|
|
|
| std::ostream& operator<<(std::ostream& os, Time time) {
|
|
|