Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
In many spots this is code:
throw new Exception( "Failed to run Maven: " + e.getMessage(), e );
e.getMessage() is redundant because e is already passed to the new exception. It will duplicate the message. Zero benefit. We shall remove them.