Elliotte Rusty Harold

Results 445 comments of Elliotte Rusty Harold

https://github.com/dependabot rebase

Hmm, why didn't the CI run? I need to figure out how to trigger that

Is the build working or is the CI borked again: Error: Failed to execute goal com.kohlschutter.mavenplugins:copy-rename-maven-plugin:2.0.0:copy (set-source) on project code: The plugin com.kohlschutter.mavenplugins:copy-rename-maven-plugin:2.0.0 requires Maven version 3.8.8 -> [Help 1]...

yes, I suppose assertThrows is a special case. Cue George Carlin voice...Although, now that I think about it, I really don't like assertThrows. The JUnit 4 approach try { doSomethingThatThrows();...

Reserving the right to change my mind later, but I think that if you want to deliver the message to all listeners, even when the an earlier listener throws an...

An error handler is an interesting idea. My initial reaction is positive, though I need to cogitate on it for a little while. It should be possible to give callers...

Slowly reading through the code I see: 1. This is mainly designed for methods that don't throw exceptions like ActionListener 2. The order is deterministic and tested though not documented....

The more I look at this class the less I like it and the more I think we should just ignore it, maybe even deprecate it. First of all, as...

Digging through the history, this class dates to 2010, well before lambdas but well post Executors. Unless someone can demonstrate a compelling need in an actual, non-hypothetical project for this...