@Deprecated
public String getThemeProperty(UIViewRoot viewRoot, String bundle, String propertyKey) {
if (bundle != null && propertyKey != null) {
ClientPropertiesKey clientKey = ClientPropertiesKey.get(FacesContext.getCurrentInstance());
PropertyCacheKey cacheKey = new PropertyCacheKey(clientKey, bundle, propertyKey);
StringValue result = propertyCache.get(cacheKey);
if (result == null) {
List properties = getPaths(clientKey, "", PROPERTY, bundle, "", false, true, false, propertyKey, true, true);
if (properties != null) {