Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
None
-
None
-
None
-
Unknown
Description
Earlier we were using CXF 3.1.7 version.
Now we have moved to CXF 3.2.0 to generate the java classes.
In the generation we are facing compilation issues (comma is missing in throws)mentioned below
void test() throws IOException Exception
{
}
This should be generated as
void test() throws IOException , Exception
{
}