core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/sbsv2/SBSv2QueryUtils.java
branchC3_BUILDER_WORK
changeset 1857 5b2d8f8c613b
parent 1843 4d6f0ee23e9b
child 1916 4d554177f768
equal deleted inserted replaced
1847:5a696c4ef747 1857:5b2d8f8c613b
   470 		removeCachedProducts();
   470 		removeCachedProducts();
   471 		removeCachedConfigurations();
   471 		removeCachedConfigurations();
   472 	}
   472 	}
   473 
   473 
   474 	public static void removeCachedAliases() {
   474 	public static void removeCachedAliases() {
   475 		SDKCacheUtils.getCache().removeCache(ALIAS_CACHE_KEY);
   475 		SDKCacheUtils.getCache().removeCache(ALIAS_CACHE_KEY, true);
   476 	}
   476 	}
   477 
   477 
   478 	public static void removeCachedProducts() {
   478 	public static void removeCachedProducts() {
   479 		SDKCacheUtils.getCache().removeCache(PRODUCT_CACHE_KEY);		
   479 		SDKCacheUtils.getCache().removeCache(PRODUCT_CACHE_KEY, true);		
   480 	}
   480 	}
   481 
   481 
   482 	public static void removeCachedConfigurations() {
   482 	public static void removeCachedConfigurations() {
   483 		SDKCacheUtils.getCache().removeCache(CONFIG_CACHE_KEY);
   483 		SDKCacheUtils.getCache().removeCache(CONFIG_CACHE_KEY, true);
   484 	}
   484 	}
   485 
   485 
   486 }
   486 }