diff options
Diffstat (limited to 'core/java/android/content/ContextWrapper.java')
| -rw-r--r-- | core/java/android/content/ContextWrapper.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/content/ContextWrapper.java b/core/java/android/content/ContextWrapper.java index 7993ea192424..d5d0dcea9438 100644 --- a/core/java/android/content/ContextWrapper.java +++ b/core/java/android/content/ContextWrapper.java @@ -16,6 +16,7 @@ package android.content; +import android.annotation.Nullable; import android.annotation.SystemApi; import android.annotation.TestApi; import android.annotation.UnsupportedAppUsage; @@ -158,6 +159,12 @@ public class ContextWrapper extends Context { return mBase.getOpPackageName(); } + /** @hide */ + @Override + public @Nullable String getFeatureId() { + return mBase.getFeatureId(); + } + @Override public ApplicationInfo getApplicationInfo() { return mBase.getApplicationInfo(); |
