Re: [DRAFT][REPORT] Apache Commons Board Report for September 2017

2017-09-11 Thread Matt Sicker
Worth mentioning the trademark thing? On 11 September 2017 at 13:51, Gary Gregory wrote: > Hi All: > > Any and all feedback welcome. > > Thank you! > Gary > > === > > ## Description: > - The Apache Commons project focuses on all aspects of reusable Java > components. > >

[DRAFT][REPORT] Apache Commons Board Report for September 2017

2017-09-11 Thread Gary Gregory
Hi All: Any and all feedback welcome. Thank you! Gary === ## Description: - The Apache Commons project focuses on all aspects of reusable Java components. - The Apache Commons components are widely used in many projects, both within Apache and without. Any ASF committer can commit to Apache

Re: [All][Math] New component: "Commons Geometry"?

2017-09-11 Thread Raymond DeCampo
On Mon, Sep 11, 2017 at 1:20 PM, Gilles wrote: > On Sun, 10 Sep 2017 12:35:17 -0400, Raymond DeCampo wrote: > >> I know I haven't been around lately, but I this exchange caught my eye. >> >> I was trying to figure out a way to balance the issues, first, that there

Re: [text] Invalid unicode sequences on .substring of RandomStringGenerator

2017-09-11 Thread Amey Jadiye
Thanks much for checking this Bruno. On Mon, Sep 11, 2017 at 3:05 PM, Bruno P. Kinoshita < brunodepau...@yahoo.com.br.invalid> wrote: > Hi Amey, > > You created a byte array from the original string (which may contain > surrogate chars). But then you created a copy string with `final String >

Re: [All][Math] New component: "Commons Geometry"?

2017-09-11 Thread Gilles
On Sun, 10 Sep 2017 12:35:17 -0400, Raymond DeCampo wrote: I know I haven't been around lately, but I this exchange caught my eye. I was trying to figure out a way to balance the issues, first, that there is resistance to creating a large number of projects spun out from CM Depending on

Re: [All][Math] New component: "Commons Geometry"?

2017-09-11 Thread Gilles
On Tue, 5 Sep 2017 14:33:55 +0200, Emmanuel Bourg wrote: Le 4/09/2017 à 15:30, Gilles a écrit : I see it as a fundamental one: Why should codes unrelated by scope be artificially tied together by management rules (such as design, supported language version, release schedule, etc.)?[1]

[GitHub] commons-collections issue #25: COLLECTIONS-575: Add synchronized queue wrapp...

2017-09-11 Thread kinow
Github user kinow commented on the issue: https://github.com/apache/commons-collections/pull/25 Hi @Xaerxess, had a few minutes to look at the pull request tonight. The code looks neat and simple to understand. Well indented, with tests, and comments. The Javadocs look well written

Re: [text] Invalid unicode sequences on .substring of RandomStringGenerator

2017-09-11 Thread Bruno P. Kinoshita
Hi Amey, You created a byte array from the original string (which may contain surrogate chars). But then you created a copy string with `final String copy = new String(bytes, charset);`. There will be encoding to UTF-8, which may fail to encode some values, leading to the error you reported I