Re: [bcel] Invalid Method Signature when parentheses are in method name

2023-02-08 Thread Jason Copenhaver
I've created a PR that repros at https://github.com/apache/commons-bcel/pull/205 Jason C On Wed, Feb 8, 2023 at 3:33 PM Gary Gregory wrote: > Hi Jason, > > The best path forward would be for you to create a PR on GitHub with a > failing unit test. That will let us reproduce your issue in the si

Re: [bcel] Invalid Method Signature when parentheses are in method name

2023-02-08 Thread Gary Gregory
Hi Jason, The best path forward would be for you to create a PR on GitHub with a failing unit test. That will let us reproduce your issue in the simplest fashion. Also make sure you are using the last version, 6.7.0. Thank you, Gary On Wed, Feb 8, 2023, 11:14 Jason Copenhaver wrote: > I've run

[text] Performance regression in StringMatcher (used by StringSubstitutor) v1.9+

2023-02-08 Thread David Becker
I would like to report a performance regression when using StringSubstitutor with large strings that our application experienced after upgrading to v1.9+, however there’s no public signup for the ASF Jira anymore. I’m hoping my report here will suffice. If not, please create an account for me an

[bcel] Invalid Method Signature when parentheses are in method name

2023-02-08 Thread Jason Copenhaver
I've run into an issue when using BCEL on the results of the below Kotlin code. class test { fun takeABlock(a: () -> Unit) { a() } fun `method name with () in it`() { takeABlock { println("other test") } } fun `method name without parens`() { takeABloc

[beanutils] Use the builder pattern in BaseLocaleConverter hierachy

2023-02-08 Thread Gary Gregory
Hi All: Since we are at the major release level, I would like to discuss changing BaseLocaleConverter and subclasses to use the builder pattern instead of each subclass like DateLocaleConverter having to implement 12 (!) constructors. It seems pretty lame that if I want to add a converter I have t