Merge "Deprecate Looper.prepareMainLooper"

am: b1f69203e7

Change-Id: If66e250dcaa558eef033abaed08b72642004aec6
This commit is contained in:
Charles Munger
2019-11-22 12:10:59 -08:00
committed by android-build-merger
2 changed files with 6 additions and 4 deletions

View File

@@ -34678,7 +34678,7 @@ package android.os {
method @Nullable public static android.os.Looper myLooper();
method @NonNull public static android.os.MessageQueue myQueue();
method public static void prepare();
method public static void prepareMainLooper();
method @Deprecated public static void prepareMainLooper();
method public void quit();
method public void quitSafely();
method public void setMessageLogging(@Nullable android.util.Printer);

View File

@@ -112,10 +112,12 @@ public final class Looper {
/**
* Initialize the current thread as a looper, marking it as an
* application's main looper. The main looper for your application
* is created by the Android environment, so you should never need
* to call this function yourself. See also: {@link #prepare()}
* application's main looper. See also: {@link #prepare()}
*
* @deprecated The main looper for your application is created by the Android environment,
* so you should never need to call this function yourself.
*/
@Deprecated
public static void prepareMainLooper() {
prepare(false);
synchronized (Looper.class) {