Recently i have switched my company and in my new company following coding standards is a must. During my Tech lead review, i got a review comment that "We should not call private methods within private methods."
So is it a generic practice followed everywhere? What if my private method code size is increasing(for ex more than say 50 or 60 lines), then how can we reduce method size and complexity in such a case.
Defining different functionalities in different methods makes things easier to understand as well but if the above mentioned standard for private methods is followed then what is a possible way to handle method complexity in this case.