From f3f2671d487d66ebdcd48cc5ceb4c667c815f150 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Tue, 17 Apr 2012 12:05:31 -0700 Subject: [PATCH] Fixed a typo. --- .../org/eclipse/cdt/codan/core/cxx/model/CxxModelsCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/CxxModelsCache.java b/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/CxxModelsCache.java index bda7bb899d8..ebeee7e1130 100644 --- a/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/CxxModelsCache.java +++ b/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/CxxModelsCache.java @@ -89,7 +89,7 @@ public class CxxModelsCache implements ICodanDisposable { return cfg; cfg = CxxControlFlowGraph.build(func); // TODO(Alena Laskavaia): Change to LRU. - if (cfgmap.size() > 20) { // if too many function better drop the cash + if (cfgmap.size() > 20) { // if too many function better drop the cache cfgmap.clear(); } cfgmap.put(func, cfg);