time static method

int time(
  1. int timeStart,
  2. int timeEnd
)

Implementation

static int time(int timeStart, int timeEnd) {
  return timeEnd - timeStart;
}