Re: [Compress] Java 16 and 17-ea

2021-07-02 Thread Stefan Bodewig
On 2021-07-03, Gary Gregory wrote: > This is the approach I've taken: I merged the pack200 branch into > master as is. Thank you Stefan - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands,

Re: [Compress] Java 16 and 17-ea

2021-07-02 Thread Gary Gregory
On Fri, Jul 2, 2021 at 11:19 AM Stefan Bodewig wrote: > > On 2021-06-12, Gary Gregory wrote: > > > Please have a look at the pack200 branch if you want, there are still > > Javadoc TODOs but it's all there. > > Just so we get this into this list's archive properly: I've propsed a > few changes in

Re: Create flow to only reflect selected fields on ReflectionToStringBuilder

2021-07-02 Thread Rob Spoor
If you know the fields, why use ReflectionToStringBuilder? Why not use a regular ToStringBuilder? That allows you to append each field you want. Yes, you have to type each field name twice (for the name and the value), but is that so much more work that it would require complicating the Reflect

Create flow to only reflect selected fields on ReflectionToStringBuilder

2021-07-02 Thread Daniel Augusto Veronezi Salvador
Hello, This is my first interaction with this community, so I may commit some mistakes 😁. *ReflectionToStringBuilder* has methods to exclude fields from *toString*; If we have an object with several fields and want to reflect only a some, we have to list all the fields that we don't want to

Re: [Compress] Java 16 and 17-ea

2021-07-02 Thread Stefan Bodewig
On 2021-06-12, Gary Gregory wrote: > Please have a look at the pack200 branch if you want, there are still > Javadoc TODOs but it's all there. Just so we get this into this list's archive properly: I've propsed a few changes in https://github.com/apache/commons-compress/pull/210 but completely le