@@ -105,9 +105,9 @@ public Builder setSslEnabled(boolean value) {
105105 * 
106106 * @return A settings object that uses local persistent storage as specified by the given 
107107 * <tt>value</tt>. 
108-  * @deprecated Use  {@link 
108+  * @deprecated Instead, use  {@link 
109109 * FirebaseFirestoreSettings.Builder#setLocalCacheSettings(LocalCacheSettings)} to configure 
110-  * SDK cache instead . 
110+  * SDK cache. 
111111 */ 
112112 @ NonNull 
113113 @ Deprecated 
@@ -131,9 +131,9 @@ public Builder setPersistenceEnabled(boolean value) {
131131 * 
132132 * @return A settings object on which the cache size is configured as specified by the given 
133133 * {@code value}. 
134-  * @deprecated Use  {@link 
134+  * @deprecated Instead, use  {@link 
135135 * FirebaseFirestoreSettings.Builder#setLocalCacheSettings(LocalCacheSettings)} to configure 
136-  * SDK cache instead . 
136+  * SDK cache. 
137137 */ 
138138 @ NonNull 
139139 @ Deprecated 
@@ -157,7 +157,7 @@ public Builder setCacheSizeBytes(long value) {
157157 * 
158158 * <p>When unspecified, {@link PersistentCacheSettings} will be used by default. 
159159 * 
160-  * <p>NOTE: Calling this setter and {@code setPersistenceEnabled()} or @{ code 
160+  * <p>NOTE: Calling this setter and {@code setPersistenceEnabled()} or {@ code 
161161 * setCacheSizeBytes()} at the same time will throw an exception during SDK initialization. 
162162 * Instead, use the configuration in the {@link PersistentCacheSettings} object to specify the 
163163 * cache size. 
@@ -196,8 +196,8 @@ public boolean isSslEnabled() {
196196
197197 /** 
198198 * @return boolean indicating whether local persistent storage is enabled or not. 
199-  * @deprecated Build  the {@code  FirebaseFirestoreSettings} instance to check cache  
200-  * configurations. 
199+  * @deprecated Instead, build  the {@link  FirebaseFirestoreSettings} instance to check the SDK  
200+  * cache  configurations. 
201201 */ 
202202 @ Deprecated 
203203 public  boolean  isPersistenceEnabled () {
@@ -206,8 +206,8 @@ public boolean isPersistenceEnabled() {
206206
207207 /** 
208208 * @return cache size for on-disk data. 
209-  * @deprecated Build  the {@code  FirebaseFirestoreSettings} instance to check cache  
210-  * configurations. 
209+  * @deprecated Instead, build  the {@link  FirebaseFirestoreSettings} instance to check the SDK  
210+  * cache  configurations. 
211211 */ 
212212 @ Deprecated 
213213 public  long  getCacheSizeBytes () {
@@ -297,7 +297,8 @@ public boolean isSslEnabled() {
297297 /** 
298298 * Returns whether or not to use local persistent storage. 
299299 * 
300-  * @deprecated Use {@link FirebaseFirestoreSettings#getCacheSettings()} instead. 
300+  * @deprecated Instead, use {@link FirebaseFirestoreSettings#getCacheSettings()} to check which 
301+  * cache is used. 
301302 */ 
302303 @ Deprecated 
303304 public  boolean  isPersistenceEnabled () {
@@ -312,7 +313,8 @@ public boolean isPersistenceEnabled() {
312313 * Returns the threshold for the cache size above which the SDK will attempt to collect the least 
313314 * recently used documents. 
314315 * 
315-  * @deprecated Use {@link FirebaseFirestoreSettings#getCacheSettings()} instead. 
316+  * @deprecated Instead, use {@link FirebaseFirestoreSettings#getCacheSettings()} to check cache 
317+  * size. 
316318 */ 
317319 @ Deprecated 
318320 public  long  getCacheSizeBytes () {
0 commit comments