ctubbsii opened a new issue, #3689: URL: https://github.com/apache/accumulo/issues/3689
Most of our code uses separate assignment statements, such as: ```java String a = "something"; String b = "something else"; ``` However, some of our code uses multi-assignments, like: ```java String a = "something", b = "something else"; ``` This is less than ideal style, and these should be changed to separate assignments wherever it makes sense to do so, throughout the code. There may be some places, such as in for loop initialization, where we want to keep the multi-assignment, but most places we don't. -- 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]
