mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
76894: Merged PLATFORM1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud) 65668: Fixed impossible cast issue flagged by SONAR git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@77736 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -428,7 +428,7 @@ public class FavouritesServiceImpl implements FavouritesService, InitializingBea
|
||||
{
|
||||
isFavourited = Boolean.valueOf((String)value);
|
||||
}
|
||||
else if(value instanceof String)
|
||||
else if(value instanceof Boolean)
|
||||
{
|
||||
isFavourited = (Boolean)value;
|
||||
}
|
||||
|
Reference in New Issue
Block a user