aboutsummaryrefslogtreecommitdiff
path: root/java/src/com/android/i18n/addressinput/ClientCacheManager.java
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2014-11-06 11:12:36 +0000
committerTorne (Richard Coles) <torne@google.com>2014-11-06 11:12:36 +0000
commitbc218bd8b5a06b381ac7a99e1301bb900076bb34 (patch)
treecf43eb4c48540fcc93cdb1fde1536438b0ece281 /java/src/com/android/i18n/addressinput/ClientCacheManager.java
parentc29dd2308a9beb970579e2a38ff1d02f218565a7 (diff)
parent5074e7546d9b6344ece890f6d1a99c3fd9132272 (diff)
downloadsrc-ub-webview-m40-release.tar.gz
This commit was generated by merge_to_master.py. Change-Id: I07ba5e568405463b1b643a6e88d60d6d35bba2b7
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();
}