ctubbsii opened a new pull request, #2730:
URL: https://github.com/apache/accumulo/pull/2730

   Resolve a sequence of deprecation changes, instead of just a single
   deprecation with a replacement (for example, if property A is deprecated
   and replaced with property B, then B is deprecated and replaced with C,
   we'd resolve like:
   
   ```java
     resolve(C, B, A);
   ```
   
     rather than:
   
   ```java
     resolve(C, resolve(B, A));
   ```
   
   Also:
   
   * To avoid errors, ensure that the current property isn't deprecated
   * Check that the deprecated properties are actually deprecated
   * Add a unit test case
   * Update the javadoc


-- 
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