Renamed mis-spelled method

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@682378 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2008-08-04 13:20:27 +00:00
parent 40f8ad057a
commit cdc38d0811
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ public class CachedSqlEntityProcessor extends SqlEntityProcessor {
String query = resolver.replaceTokens(context.getEntityAttribute("query"));
isFirst = false;
if (simpleCache != null) {
return getSimplCacheData(query);
return getSimpleCacheData(query);
} else {
return getIdCacheData(query);
}

View File

@ -393,7 +393,7 @@ public class EntityProcessorBase extends EntityProcessor {
* @param query string for which cached row is to be returned
* @return the cached row corresponding to the given query
*/
protected Map<String, Object> getSimplCacheData(String query) {
protected Map<String, Object> getSimpleCacheData(String query) {
List<Map<String, Object>> rows = simpleCache.get(query);
if (rows != null) {
dataSourceRowCache = new ArrayList<Map<String, Object>>(rows);