mirror of https://github.com/apache/lucene.git
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:
parent
40f8ad057a
commit
cdc38d0811
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue