aboutsummaryrefslogtreecommitdiff
path: root/java/src/com/android/i18n/addressinput/ClientCacheManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/com/android/i18n/addressinput/ClientCacheManager.java')
-rw-r--r--java/src/com/android/i18n/addressinput/ClientCacheManager.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/java/src/com/android/i18n/addressinput/ClientCacheManager.java b/java/src/com/android/i18n/addressinput/ClientCacheManager.java
index 0ee1816..8c2c312 100644
--- a/java/src/com/android/i18n/addressinput/ClientCacheManager.java
+++ b/java/src/com/android/i18n/addressinput/ClientCacheManager.java
@@ -20,10 +20,10 @@ package com.android.i18n.addressinput;
* Used by AddressWidget to handle caching in client-specific ways.
*/
public interface ClientCacheManager {
- /** Get the data that is cached for the given key. */
- public String get(String key);
- /** Put the data for the given key into the cache. */
- public void put(String key, String data);
- /** Get the Url of the server that serves address metadata. */
- public String getAddressServerUrl();
+ /** Get the data that is cached for the given key. */
+ public String get(String key);
+ /** Put the data for the given key into the cache. */
+ public void put(String key, String data);
+ /** Get the Url of the server that serves address metadata. */
+ public String getAddressServerUrl();
}