summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@android.com>2012-06-11 16:01:38 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-06-11 16:01:38 -0700
commitbb5360966668ca8e97c02363b0d87dc9c9ae2451 (patch)
tree144e8528bdd281a5015d693ae4e3612a6d576dba
parent3fe79dfdf4ca63535ec9e586ebed553a862061ea (diff)
parent8e61185918b9b4ef8de6ecffb0d77afaeb336abd (diff)
downloadbase-bb5360966668ca8e97c02363b0d87dc9c9ae2451.tar.gz
Merge "Improved documentation (clarify on issue 8727)"
-rw-r--r--core/java/android/app/Application.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/java/android/app/Application.java b/core/java/android/app/Application.java
index dd9ea267c174..3a67cecfe560 100644
--- a/core/java/android/app/Application.java
+++ b/core/java/android/app/Application.java
@@ -64,11 +64,12 @@ public class Application extends ContextWrapper implements ComponentCallbacks2 {
}
/**
- * Called when the application is starting, before any other application
- * objects have been created. Implementations should be as quick as
- * possible (for example using lazy initialization of state) since the time
- * spent in this function directly impacts the performance of starting the
- * first activity, service, or receiver in a process.
+ * Called when the application is starting, before any activity, service,
+ * or receiver objects (excluding content providers) have been created.
+ * Implementations should be as quick as possible (for example using
+ * lazy initialization of state) since the time spent in this function
+ * directly impacts the performance of starting the first activity,
+ * service, or receiver in a process.
* If you override this method, be sure to call super.onCreate().
*/
public void onCreate() {