FutureTransformAsync
Use transform instead of transformAsync when all returns are an immediate future.

Severity
WARNING

The problem

The usage of transformAsync is not necessary when all the return values of the transformation function are immediate futures. In this case, the usage of transform is preferred.

Note that transform cannot be used if the body of the transformation function throws checked exceptions.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("FutureTransformAsync") to the enclosing element.