Here you can find the source of minutes2Ms(long minutes)
public static long minutes2Ms(long minutes)
//package com.java2s; //License from project: Apache License public class Main { /**// w w w . ja va 2s . com * Convert minutes to ms */ public static long minutes2Ms(long minutes) { return seconds2Ms(minutes * 60); } /** * Convert seconds to ms */ public static long seconds2Ms(long seconds) { return seconds * 1000; } }