After seeing some erratic behavior in a mixed Java and Scala application I found that Java code checking for equality of Scala enums was failing when the should have passed. I've created this project ...
Most new Java developers quickly learn that they should generally compare Java Strings using String.equals(Object) rather than using ==. This is emphasized and reinforced to new developers repeatedly ...
When trying to format the following class one runs into an IAE with Java < 15. package org.test; public class Test { void test() { String sealed = "a sealed test"; } } The stacktrace looks like this ...