[OLINGO-202] Remove caching by by name for get with key

This commit is contained in:
Christian Amend 2014-04-07 13:52:45 +02:00
parent 081df2aa70
commit 855a586b3d
1 changed files with 0 additions and 5 deletions

View File

@ -287,11 +287,6 @@ public abstract class AbstractEdm implements Edm {
function = createUnboundFunction(functionFqn, parameterNames);
if (function != null) {
unboundFunctionsByKey.put(key, function);
if (!unboundFunctionsByName.containsKey(functionFqn)) {
unboundFunctionsByName.put(functionFqn, new ArrayList<EdmFunction>());
}
unboundFunctionsByName.get(functionFqn).add(function);
}
}