drekbour
drekbour
Found during testing, where facilities are being initialised many times and with types that the SUT code doesn't know about. Simplest reproduction: ```java Class clazz = IndexedCollection.class; createAttributes(clazz, GETTER_METHODS_ONLY); createAttributes(clazz,...
The channels module looks really interesting. It's no longer in `jctools-experimental` but is (still) neither published itself as an artifact nor documented outside of the code. Is it ready for...
When annotating a method for building it is currently the case that it must be a proper static Factory Method. If the method is written solely for the builder to...
I tested this using the JMH test cases `return this;` instead of the default `return self;` and saw very notable increase in performance (and decrease in heap allocation). I think...
At some point over the last few years, the implementation of `withOptionalProperties` has gotten very wasteful. When originally implemented, the internal type was: protected int value$age$int; now it is protected...
Currently PB `clone()` wraps the (checked) `CloneNotSupportedException` with `InternalError`. As of Java 8, the following ["sneaky throws"](https://www.baeldung.com/java-sneaky-throws) allows the code to propagate the checked exception directly. ````java @Override @GwtIncompatible public...
This allows `public class AppleBuilder extends FruitBuilder` to be generated and, provided all withMethods override, used as an abstract `FruitBuilder`. It's ugly but effective. One day it can be followed...
`FeatureProxyFactoryBean` takes only a String and passes into Togglz an anonymous `NamedFeature`. Even back in the XML-only days, it would have been possible to pass a user's Feature enum as...
As we discuss using this plugin many are asking if CalVer can be an option. There are a few ways this could be interpreted. One is to allow any timestamp...
Use `expect` / `actual` to allow Java 8 to provide the proper Optional implementation. * https://stackoverflow.com/questions/59006733/kotlin-multiplatform-support-for-optional/59007511?noredirect=1#comment104264493_59007511 * https://github.com/h0tk3y/mpp-optional-demo