daysToYears static method

int daysToYears(
  1. int days
)

Implementation

static int daysToYears(final int days) {
  return days ~/ YEAR;
}