[ https://issues.apache.org/jira/browse/ADFFACES-412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Simon Lessard updated ADFFACES-412: ----------------------------------- Attachment: ADFFACES-412.patch Removed all String[] var = new String[] {}; structure for the simpler String[] var = {}; version. > JSLocaleElementsGenerator cannot be parsed by latest version of Qdox > -------------------------------------------------------------------- > > Key: ADFFACES-412 > URL: https://issues.apache.org/jira/browse/ADFFACES-412 > Project: MyFaces ADF-Faces > Issue Type: Bug > Components: Plugins > Reporter: Simon Lessard > Assigned To: Simon Lessard > Priority: Critical > Attachments: ADFFACES-412.patch > > > It seems that latest version of Qdox cannot parse the following Java code > private static String[] myArray = new String[] { > // initialization > }; > The fix is easy (but the real issue was annoying to find): > private static String[] myArray = { > // initialization > }; -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.