Re: [compress] poor test coverage of harmony code

2021-07-07 Thread PeterLee
This is great work. Thanks. cheers, Lee On Sat, Jul 3, 2021 at 10:15 PM Stefan Bodewig wrote: > On 2021-07-03, Stefan Bodewig wrote: > > > I assume the code originates from > > > https://svn.apache.org/repos/asf/harmony/enhanced/java/trunk/classlib/modules/pack200/src/main/ > > and I'd look int

Re: [compress] releasing 1.21 soonish?

2021-07-07 Thread PeterLee
Everything looks great. :) On Sat, Jul 3, 2021 at 5:57 PM Stefan Bodewig wrote: > Hi all > > is there anything you want to work on or can we go ahead with cutting a > new Compress release in about a week? > > There are some test coverage and javadoc issues that need to get > resolved but other t

Re: Create flow to only reflect selected fields on ReflectionToStringBuilder

2021-07-07 Thread Daniel Augusto Veronezi Salvador
Thanks for the reply Rob, To examplify what I mean: We have a class with 7 attributes: a, b, c, d, e, f. Example example... example.setA("test"); example.setB(1); ... example.setE(false); ... We need to print only "a", "b" and "e"; According with your suggestion, it would be: ToStringBuilde