Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4a51c20c authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

I am getting tired of the java doc warnings, so fix them.

Change-Id: I2205eebae419eaf4a0992c9f5b7cd807eb843fe1
parent cf3a0830
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14932,7 +14932,7 @@
 synchronized="false"
 static="false"
 final="false"
 deprecated="deprecated"
 deprecated="not deprecated"
 visibility="public"
>
<parameter name="response" type="android.accounts.IAccountAuthenticatorResponse">
@@ -115562,7 +115562,7 @@
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<parameter name="asu" type="int">
+1 −0
Original line number Diff line number Diff line
@@ -261,6 +261,7 @@ public class AccountManager {
    }

    /** @deprecated use {@link #confirmCredentials} instead */
    @Deprecated
    public AccountManagerFuture<Boolean> confirmPassword(final Account account, final String password,
            AccountManagerCallback<Boolean> callback, Handler handler) {
        return new Future2Task<Boolean>(handler, callback) {
+2 −0
Original line number Diff line number Diff line
@@ -56,9 +56,11 @@ public interface AccountManagerFuture<V> extends Future<V> {
    V getResult(long timeout, TimeUnit unit)
            throws OperationCanceledException, IOException, AuthenticatorException;

    /** @deprecated Use {@link #getResult} */
    @Deprecated
    V get() throws InterruptedException, ExecutionException;

    /** @deprecated Use {@link #getResult}  */
    @Deprecated
    V get(long timeout, TimeUnit unit)
            throws InterruptedException, ExecutionException, TimeoutException;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ oneway interface IAccountAuthenticator {

    /**
     * Checks that the account/password combination is valid.
     * @deprecated
     * note -- deprecated
     */
    void confirmPassword(in IAccountAuthenticatorResponse response,
        in Account account, String password);
+2 −0
Original line number Diff line number Diff line
@@ -1769,6 +1769,7 @@ public class SearchManager
    /**
     * @deprecated This method is an obsolete internal implementation detail. Do not use.
     */
    @Deprecated
    public void onCancel(DialogInterface dialog) {
        throw new UnsupportedOperationException();
    }
@@ -1776,6 +1777,7 @@ public class SearchManager
    /**
     * @deprecated This method is an obsolete internal implementation detail. Do not use.
     */
    @Deprecated
    public void onDismiss(DialogInterface dialog) {
        throw new UnsupportedOperationException();
    }
Loading