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)
80355: Reverse Merge HEAD-BUG-FIX (5.0/Cloud) << And added alfresco-opencmis-extension 1.0 >> 79170: Merged V4.2-BUG-FIX (4.2.4) to HEAD-BUG-FIX (5.0/Cloud) << Commit is actually a reverse merge of the original merges from V4.2-BUG-FIX 79113,79128 rather than the changes from V4.2-BUG-FIX >> 79166: Reverse merged V4.2-BUG-FIX (4.2.4) << Need a new version of alfresco-opencmis-extension as 0.9 is incompatible with OpenCMIS 0.11.0 and Steve is on holiday for a week. >> << The original commits are already merged to HBF for ACE-484 so will revert them too. >> 79070: Merged DEV to V4.2-BUG-FIX (4.2.4) 67851: MNT-11223 : Upgrade OpenCMIS library to 0.11.0 on 4.2 code line Updated OpenCMIS to 0.11 version. 79120: MNT-11223: Merged V4.1-BUG-FIX (4.1.10) to V4.2-BUG-FIX (4.2.4) 79117: MNT-11596 Fix dependencies declared in pom files after upgrade of OpenCMIS to 0.11.0, and all related upgrades git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@82736 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -152,6 +152,7 @@ public class ResourceWebScriptHelper
|
||||
* @param selectParam
|
||||
* @return List<String> bean property names potentially using JSON Pointer syntax
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static List<String> getSelectClause(String selectParam) throws InvalidArgumentException
|
||||
{
|
||||
if (selectParam == null) return Collections.emptyList();
|
||||
@@ -167,8 +168,7 @@ public class ResourceWebScriptHelper
|
||||
{
|
||||
return Arrays.asList(selectedPropsTree.getText());
|
||||
}
|
||||
@SuppressWarnings("unchecked")
|
||||
List<Tree> children = (List<Tree>)selectedPropsTree.getChildren();
|
||||
List<Tree> children = (List<Tree>) selectedPropsTree.getChildren();
|
||||
if (children!= null && !children.isEmpty())
|
||||
{
|
||||
List<String> properties = new ArrayList<String>(children.size());
|
||||
|
Reference in New Issue
Block a user