Mike Glazer
Mike Glazer
On a repository which I maintain, we have to keep a release branch system, so our release branches are named: * release/3.19.10.1 * release/3.19.10.2 * release/3.19.10.3 * ... In order...
I have created a minimal reproduction of this issue here: https://github.com/mglazer/repro-javaseventeen-immutables The crux of the issue, is that when using Java 17 as a library target, if you have a...
## What happened? I have a project which uses Kotlin. I wish to use modern JVMs and therefore employ the Java Versions plugin. However, the current implementation of the Java...
## What happened? Imagine I have a class hierarchy like the following: ```java class SomeClassA extends Parent { // parent comes from parent.jar } ``` ```java class Parent extends GrandParent...
From: https://github.com/palantir/atlasdb/blob/develop/atlasdb-client/build.gradle#L77 I do not believe that atlasdb-client should have a compile dependency on rocksdb. At minimum, it should be a light dependency which doesn't require downstream consumers to pull...
I have a controller with the following signature: ``` public class Controller { public void save() throws InvalidObjectException { callExternalServiceThatThrowsException(); } } ``` The fact that it throws `InvalidObjectException` is...
Here's a stack trace I get quite a bit with the latest version ``` ERROR [AWT-EventQueue-1] com.palantir.ptoss.cinch.swing.BoundSelection - could not invoke JComboBox binding java.lang.NullPointerException at com.palantir.ptoss.cinch.swing.BoundSelection$Wiring$3.itemStateChanged(BoundSelection.java:190) at javax.swing.JComboBox.fireItemStateChanged(JComboBox.java:1205) at javax.swing.JComboBox.selectedItemChanged(JComboBox.java:1253)...
## Motivation There are times when I want to migrate an endpoint from a POST method to a PUT method. Primarily this is brought on by placing my service behind...
## What happened? I tried: ``` types: imports: Response: base-type: binary external: java: javax.ws.rs.core.Response ``` It failed with: ``` Caused by: java.lang.IllegalArgumentException: TypeNames must be a primitive type [any, string,...
## What happened? A number of our internal projects (please message me directly for the internal URLs) took an upgrade to processors 3.1.0. This caused our annotation processing in IntelliJ...