diff options
author | Dianne Hackborn <hackbod@google.com> | 2009-08-21 15:14:02 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2009-08-24 17:37:32 -0700 |
commit | 4a51c20ce607c74914f90fd897f04080121ac13b (patch) | |
tree | 067caf43aa752a8952061d7d8e03fb1aeb77c96e /core/java/android/accounts/AccountManagerFuture.java | |
parent | cf3a08307d1599eaa91d7cc4e7c601e5fa13037f (diff) | |
download | frameworks_base-4a51c20ce607c74914f90fd897f04080121ac13b.zip frameworks_base-4a51c20ce607c74914f90fd897f04080121ac13b.tar.gz frameworks_base-4a51c20ce607c74914f90fd897f04080121ac13b.tar.bz2 |
I am getting tired of the java doc warnings, so fix them.
Change-Id: I2205eebae419eaf4a0992c9f5b7cd807eb843fe1
Diffstat (limited to 'core/java/android/accounts/AccountManagerFuture.java')
-rw-r--r-- | core/java/android/accounts/AccountManagerFuture.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/accounts/AccountManagerFuture.java b/core/java/android/accounts/AccountManagerFuture.java index 9939398..74d83eb 100644 --- a/core/java/android/accounts/AccountManagerFuture.java +++ b/core/java/android/accounts/AccountManagerFuture.java @@ -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; |