From d38c8480491273173bce7225515a4d6114ad00a5 Mon Sep 17 00:00:00 2001 From: Neil Fuller Date: Tue, 13 Jun 2017 15:24:12 +0100 Subject: [PATCH] Track movement of some libcore/tzdata files Some files in libcore/tzdata are moving to system/timezone under the package com.android.timezone.distro. Bug: 31008728 Test: run cts -m CtsHostTzDataTests Merged-In: I2600dd4bee22a571b9eb7303733591b60d1a8b2a Change-Id: I2600dd4bee22a571b9eb7303733591b60d1a8b2a --- tzdatacheck/tzdatacheck.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tzdatacheck/tzdatacheck.cpp b/tzdatacheck/tzdatacheck.cpp index 8fcd17f7c..7b8d5c7d0 100644 --- a/tzdatacheck/tzdatacheck.cpp +++ b/tzdatacheck/tzdatacheck.cpp @@ -44,7 +44,7 @@ static const char* CURRENT_DIR_NAME = "/current"; static const char* UNINSTALL_TOMBSTONE_FILE_NAME = "/STAGED_UNINSTALL_TOMBSTONE"; // The name of the file containing the distro version information. -// See also libcore.tzdata.shared2.TimeZoneDistro / libcore.tzdata.shared2.DistroVersion. +// See also com.android.timezone.distro.TimeZoneDistro / com.android.timezone.distro.DistroVersion. static const char* DISTRO_VERSION_FILENAME = "/distro_version"; // distro_version is an ASCII file consisting of 17 bytes in the form: AAA.BBB|CCCCC|DDD @@ -55,14 +55,14 @@ static const char* DISTRO_VERSION_FILENAME = "/distro_version"; static const int DISTRO_VERSION_LENGTH = 13; // The major version of the distro format supported by this code as a null-terminated char[]. -// See also libcore.tzdata.shared2.TimeZoneDistro / libcore.tzdata.shared2.DistroVersion. +// See also com.android.timezone.distro.TimeZoneDistro / com.android.timezone.distro.DistroVersion. static const char SUPPORTED_DISTRO_MAJOR_VERSION[] = "001"; // The length of the distro format major version excluding the \0 static const size_t SUPPORTED_DISTRO_MAJOR_VERSION_LEN = sizeof(SUPPORTED_DISTRO_MAJOR_VERSION) - 1; // The minor version of the distro format supported by this code as a null-terminated char[]. -// See also libcore.tzdata.shared2.TimeZoneDistro / libcore.tzdata.shared2.DistroVersion. +// See also com.android.timezone.distro.TimeZoneDistro / com.android.timezone.distro.DistroVersion. static const char SUPPORTED_DISTRO_MINOR_VERSION[] = "001"; // The length of the distro format minor version excluding the \0 @@ -78,7 +78,7 @@ static const size_t RULES_VERSION_LEN = 5; // Distro version bytes are: AAA.BBB|CCCCC - the rules version is CCCCC static const size_t DISTRO_VERSION_RULES_IDX = 8; -// See also libcore.tzdata.shared2.TimeZoneDistro. +// See also com.android.timezone.distro.TimeZoneDistro. static const char* TZDATA_FILENAME = "/tzdata"; // tzdata file header (as much as we need for the version):