Robin Karlsson

Results 1 issues of Robin Karlsson

Java 19 introduced new static methods for creating maps and sets so that this (using `Maps` from Guava) ```java Map map = Maps.newLinkedHashMapWithExpectedSize(numMappings); ``` can be replaced with ```java Map...