summaryrefslogtreecommitdiffstats
path: root/core/java/android/accounts/AccountManagerFuture.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-08-21 15:14:02 -0700
committerDianne Hackborn <hackbod@google.com>2009-08-24 17:37:32 -0700
commit4a51c20ce607c74914f90fd897f04080121ac13b (patch)
tree067caf43aa752a8952061d7d8e03fb1aeb77c96e /core/java/android/accounts/AccountManagerFuture.java
parentcf3a08307d1599eaa91d7cc4e7c601e5fa13037f (diff)
downloadframeworks_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.java2
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;