diff options
author | Daniel Sandler <dsandler@android.com> | 2015-06-24 01:27:05 -0400 |
---|---|---|
committer | Daniel Sandler <dsandler@android.com> | 2015-06-24 01:27:05 -0400 |
commit | 0ec462005d97f60cef2e4c7d7f7b5e2f85d1e735 (patch) | |
tree | 9122f97dc514ef8d8df50b62a5e590454b8e8330 | |
parent | 1d3e3ca157849e772bce2f8ffc63d7550d7454f1 (diff) | |
download | frameworks_base-0ec462005d97f60cef2e4c7d7f7b5e2f85d1e735.zip frameworks_base-0ec462005d97f60cef2e4c7d7f7b5e2f85d1e735.tar.gz frameworks_base-0ec462005d97f60cef2e4c7d7f7b5e2f85d1e735.tar.bz2 |
Fix build.
We don't need purgeResources public since it's part of the
ashmem internal optimization.
Change-Id: I65ba7545cf4801a8b97f3ece9b5ee5100c0f1c97
-rw-r--r-- | core/java/android/app/Notification.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index af9decc..aa68345 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -3797,6 +3797,9 @@ public class Notification implements Parcelable return wip; } + /** + * @hide + */ public void purgeResources() {} // The following methods are split out so we can re-create notification partially. @@ -3910,6 +3913,9 @@ public class Notification implements Parcelable return this; } + /** + * @hide + */ @Override public void purgeResources() { super.purgeResources(); |