From 371da73d40c8d02d718af593a37979f32c31c958 Mon Sep 17 00:00:00 2001 From: MÃ¥rten Kongstad Date: Wed, 13 Mar 2019 22:27:40 +0100 Subject: Resources.getSystem docs: not affected by RRO Clarify the docs around Resources.getSystem: the object returned is not affected by Runtime Resource Overlay. Test: builds, boots Change-Id: I1011f37c98d81b8b1977f4dbc579bc2a536208cd --- core/java/android/content/res/Resources.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/android/content/res/Resources.java b/core/java/android/content/res/Resources.java index 67292426b248..6b8416d46601 100644 --- a/core/java/android/content/res/Resources.java +++ b/core/java/android/content/res/Resources.java @@ -191,9 +191,9 @@ public class Resources { /** * Return a global shared Resources object that provides access to only - * system resources (no application resources), and is not configured for - * the current screen (can not use dimension units, does not change based - * on orientation, etc). + * system resources (no application resources), is not configured for the + * current screen (can not use dimension units, does not change based on + * orientation, etc), and is not affected by Runtime Resource Overlay. */ public static Resources getSystem() { synchronized (sSync) { -- cgit v1.2.3-59-g8ed1b