cstamas opened a new pull request #652:
URL: https://github.com/apache/maven/pull/652


   Proposed changes for https://github.com/apache/maven/pull/651:
   * validate input
   * do not modify loop invariant within loop body
   
   Remarks:
   * IF we allow "null" life-cycles then modify validation from `if ( len < 1 
|| len % 2 != 0 )` to `if ( len % 2 != 0 )`
   * IF we do NOT allow "null" life-cycles, then modify validation from `if ( 
len < 1 || len % 2 != 0 )` to `if ( len < 2 || len % 2 != 0 )`
   
   (and in both cases adjust exception message as well)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to