diff options
| author | 2015-05-04 23:56:22 +0000 | |
|---|---|---|
| committer | 2015-05-04 23:56:24 +0000 | |
| commit | 247bc95cb31c6f7e56814818dc29aa1eb8512e6c (patch) | |
| tree | cbea46d1c765e4613a8f7ac951e6bce5a5649c00 /tools/aapt2/ResourceValues.cpp | |
| parent | 2f519532eecd881b034a4e31f57336724604cb56 (diff) | |
| parent | 6ff19664f9279023c96e5a65c3059e1ef4beac0f (diff) | |
Merge "AAPT2: Record public status in a more robust way" into mnc-dev
Diffstat (limited to 'tools/aapt2/ResourceValues.cpp')
| -rw-r--r-- | tools/aapt2/ResourceValues.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/aapt2/ResourceValues.cpp b/tools/aapt2/ResourceValues.cpp index 3a6d65d1d96d..2bf38e417cba 100644 --- a/tools/aapt2/ResourceValues.cpp +++ b/tools/aapt2/ResourceValues.cpp @@ -217,25 +217,6 @@ void BinaryPrimitive::print(std::ostream& out) const { } } -bool Sentinel::isWeak() const { - return true; -} - -bool Sentinel::flatten(android::Res_value& outValue) const { - outValue.dataType = ExtendedTypes::TYPE_SENTINEL; - outValue.data = 0; - return true; -} - -Sentinel* Sentinel::clone(StringPool* /*newPool*/) const { - return new Sentinel(); -} - -void Sentinel::print(std::ostream& out) const { - out << "(sentinel)"; - return; -} - Attribute::Attribute(bool w, uint32_t t) : weak(w), typeMask(t) { } |