This checker flags potential problems with TimeUnit conversions: 1) conversions that are statically known to be equal to 0 or 1; 2) conversions that are converting from a given unit back to the same unit; 3) conversions that are converting from a smaller unit to a larger unit and passing a constant value
Suppress false positives by adding the suppression annotation @SuppressWarnings("TimeUnitConversionChecker")
to the enclosing element.