garydgregory commented on PR #283:
URL:
https://github.com/apache/commons-beanutils/pull/283#issuecomment-2323326624
@stevebosman
Thank you for your update. Yeah, all IDEs I've tried mess up the conversion
or leaves you with code that does not even compile (I'm looking at you
IntelliJ...)
Another item that would be nice to have (but don't feel obligated):
```
assertTrue(e.toString().contains("Unknown property"), "Wrong exception was
thrown: " + e);
```
->
```
assertTrue(e.toString().contains("Unknown property"), () -> "Wrong exception
was thrown: " + e);
```
which will avoid creating garbage Strings in the majority of build runs.
--
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]