UnnecessaryLongToIntConversion
Converting a long or Long to an int to pass as a long parameter is usually not necessary. If this conversion is intentional, consider `Longs.constrainToRange()` instead.
Suppression
Suppress false positives by adding the suppression annotation @SuppressWarnings("UnnecessaryLongToIntConversion")
to the enclosing element.