Here you can find the source of toMinutes(int s)
public static int toMinutes(int s)
//package com.java2s; //License from project: Apache License public class Main { public static int toMinutes(int s) { return s / 60; }//from w w w . j a va2s .com }