summaryrefslogtreecommitdiff
path: root/tools/aapt2/ResourceValues.cpp
diff options
context:
space:
mode:
author Adam Lesinski <adamlesinski@google.com> 2015-05-04 23:56:22 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2015-05-04 23:56:24 +0000
commit247bc95cb31c6f7e56814818dc29aa1eb8512e6c (patch)
treecbea46d1c765e4613a8f7ac951e6bce5a5649c00 /tools/aapt2/ResourceValues.cpp
parent2f519532eecd881b034a4e31f57336724604cb56 (diff)
parent6ff19664f9279023c96e5a65c3059e1ef4beac0f (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.cpp19
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) {
}