h908714124
h908714124
ok, I've found out that the change event _does_ trigger, but _only_ if you bind your listener via [jQuery.change](https://api.jquery.com/change/). A listener that's bound natively via `addEventListener` will _not_ trigger. This...
I'm going to squash three commits into one here
I did a rebase that should not have changed anything, yet the MacOS build has failed with this message: ``` org.assertj.core.util.Files_fileNamesIn_Test java.io.IOException: at org.assertj.core.util.Closeables_closeQuietly_Test.should_ignore_thrown_errors(Closeables_closeQuietly_Test.java:37) ``` Looks like an unrelated random...
The error from the windows test has something in common with the previous MacOS error. There's probably something wrong with `Closeables_closeQuietly_Test.java:37`. Also it's curious that `Closeables_closeQuietly_Test` is called from other...
The wording is fine, but the offending token should be on a separate line with no other text before it. Otherwise it might reduce readability, especially for long tokens like...
Updated PR to print a different message, please check again. Also added a new test method `should_fail_if_subsequence_is_bigger_than_actual_real_message` that tests the actual error message. The existing tests were not sensitive to...
One advantage of builder pattern is descriptive method names, like so: ``` java Shape cube = Shapes.cube().width(100.0).height(80.0).depth(90.0); ``` Easier to read than if `with()`, `height()` and `depth()` were all just...
@jbgi I'm thinking of exposing zerobuilder's core functionality as a library (more or less what Generator.generate does, see http://bit.ly/2dSjvav)
I hope to release a separate artifact `zerobuilder-api` in a few days; this will be a non-shaded, regular jar, with a dependency on guava (because zerobuilder is supposed to run...
Api is already released. See https://github.com/h908714124/zerobuilder/tree/master/api