garydgregory commented on PR #706: URL: https://github.com/apache/commons-compress/pull/706#issuecomment-3323516992
@ppkarwasz Definitely not! It's simpler to use "builder()" consistently. In the one or two places where I could not use builder() due to inheritance, I didn't add a builder() method and instead rely on "new Builder()". Remember that ".builder()" is a shorthand convenience. I'd rather not have "weirdLongNameBuilder()" and use "new Builder()" when inheritance gets in the way. Static imports are a stylistic choice and we shouldn't bend over backwards with lame names for it. In general in Commons, we only use static imports for JUnit. -- 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]
