Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.9.4-SNAPSHOT
-
Labels:None
-
Number of attachments :
Description
ClientGen9Mojo has the same code block twice in succession in the SVN Trunk code. One should be removed.
// clientGen.setDestdir( new File( this.outputDir ) );
method = ReflectionUtils.getSetter("destdir", clientGen.getClass());
if (method != null) {
method.invoke(clientGen, new Object[]
);
}
Clientgen was rewritten so this code is now gone.