Skip to content

Commit bb53609

Browse files
Dianne Hackbornandroid code review
authored andcommitted
Merge "Improved documentation (clarify on issue 8727)"
2 parents 3fe79df + 8e61185 commit bb53609

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

core/java/android/app/Application.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,12 @@ public Application() {
6464
}
6565

6666
/**
67-
* Called when the application is starting, before any other application
68-
* objects have been created. Implementations should be as quick as
69-
* possible (for example using lazy initialization of state) since the time
70-
* spent in this function directly impacts the performance of starting the
71-
* first activity, service, or receiver in a process.
67+
* Called when the application is starting, before any activity, service,
68+
* or receiver objects (excluding content providers) have been created.
69+
* Implementations should be as quick as possible (for example using
70+
* lazy initialization of state) since the time spent in this function
71+
* directly impacts the performance of starting the first activity,
72+
* service, or receiver in a process.
7273
* If you override this method, be sure to call super.onCreate().
7374
*/
7475
public void onCreate() {

0 commit comments

Comments
 (0)