a-k-g

Results 7 issues of a-k-g

## What happened? The `Set.of()` factory methods are a bit dangerous to use. If there are duplicate elements it will throw at runtime, for example: ```java String element1 = "hello";...

## Before this PR The `collapseKeys()` API of `EntryStream` is dangerous and should be avoided. In internal products the API is frequently used as a grouping operation but its not...

## What happened? We had a few `SuppressWarnings` which were previously required but became unnecessary at some point. ## What did you want to happen? It would be great if...

## What happened? Java 10 introduces new `Collectors` which create Immutable collections such as `toUnmodifiableMap`, `toUnmodifiableList()` and `toUnmodifiableSet()`. Baseline checks currently don't enforce that you use these instead of the...

## What happened? We use a conjure client to talk to a Go server. This call was working fine with Java 8. On upgrading to Java 11 on client side...

## What happened? We have the following conjure type: AndSearchFilter: docs: | A SearchFilter used to combine multiple SearchFilters. A row satisfies this SearchFilter if and only if it satisfies...

With #21, we generate `@Deprecated` methods with the intention of avoiding compile breaks in cases where new query params are added. However, in some cases we might silently let compilation...