George Hawkins
George Hawkins
Sorry - normally I'd submit a pull request for this kind of thing but unfortunately I don't have time. Many people new to the project will start by working through...
Verification of method invocations can fail in a non-obvious way if the method takes default arguments, e.g.: val foo = mock() foo.beta(4) verify(foo).beta() Here we're trying to `verify` that `beta()`...
The introduction of [`KotlinObjectSingletonDeserializer`](https://github.com/FasterXML/jackson-module-kotlin/blob/master/src/main/kotlin/com/fasterxml/jackson/module/kotlin/KotlinObjectSingletonDeserializer.kt) in 2.10.1 breaks the deserialization of Kotlin structures that could successfully be deserialized in 2.10.0. I've forked jackson-module-kotlin and introduced three branches that demonstrate the problem...
As one of the better intros to RxJava it'd be nice to know that it will stay relevant as RxJava evolves. Now that [RxJava 2.0](https://github.com/ReactiveX/RxJava/releases/tag/v2.0.0) is out are there any...