Here you can find the source of fromMinutes(long seed)
private static long fromMinutes(long seed)
//package com.java2s; //License from project: Open Source License public class Main { private static long fromMinutes(long seed) { return 60 * fromSeconds(seed); }/*from www . jav a 2 s . co m*/ private static long fromSeconds(long seed) { return seed * 1000; } }