ivanzlenko commented on PR #7930:
URL: https://github.com/apache/ozone/pull/7930#issuecomment-2773085634

   > Actually one line one parameter is not a recommended style in Ozone, we 
should avoid to use that. And those style related comments in test case codes.
   In many cases it is very much hurts readability:
   `
   callFunc(param1, param2, param3,
       param4, param5,
       aVeryLongParameterNameWhichTakesAlmostAllSpace,
       param7, param8);
   `
   Compared to: 
   `
   callFunc(
       param1,
       param2,
       param3,
       param4,
       param5,
       aVeryLongParameterNameWhichTakesAlmostAllSpace,
       param7,
       param8
   );
   `
   It is way easier to understand what is going on and which parameters are 
involved in a function call.
   However it maybe worth pull into GitHub discussion. 


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to