Adding vnf-topology-operation endpoint
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / common / src / main / java / org / onap / so / simulator / cache / provider / AbstractCacheServiceProvider.java
index ae31a3f..6a10197 100644 (file)
@@ -38,7 +38,7 @@ public abstract class AbstractCacheServiceProvider {
         this.cacheManager = cacheManager;
     }
 
-    protected void clearCahce(final String name) {
+    protected void clearCache(final String name) {
         final Cache cache = cacheManager.getCache(name);
         if (cache != null) {
             final ConcurrentHashMap<?, ?> nativeCache = (ConcurrentHashMap<?, ?>) cache.getNativeCache();