Here you can find the source of toMinutes(long date)
private static long toMinutes(long date)
//package com.java2s; //License from project: LGPL public class Main { private static long toMinutes(long date) { return toSeconds(date) / 60L; }/*w ww . j av a 2 s . co m*/ private static long toSeconds(long date) { return date / 1000L; } }