summaryrefslogtreecommitdiffstats
path: root/core/java/android/content/pm/ProviderInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/content/pm/ProviderInfo.java')
-rw-r--r--core/java/android/content/pm/ProviderInfo.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/java/android/content/pm/ProviderInfo.java b/core/java/android/content/pm/ProviderInfo.java
index b67ddf6..1d11b31 100644
--- a/core/java/android/content/pm/ProviderInfo.java
+++ b/core/java/android/content/pm/ProviderInfo.java
@@ -65,7 +65,11 @@ public final class ProviderInfo extends ComponentInfo
* running in the same process. Higher goes first. */
public int initOrder = 0;
- /** Whether or not this provider is syncable. */
+ /**
+ * Whether or not this provider is syncable.
+ * @deprecated This flag is now being ignored. The current way to make a provider
+ * syncable is to provide a SyncAdapter service for a given provider/account type.
+ */
public boolean isSyncable = false;
public ProviderInfo() {