Here you can find the source of getMinutes(int minutes)
public static int getMinutes(int minutes)
//package com.java2s; //License from project: Open Source License public class Main { public static int getMinutes(int minutes) { int minute = minutes % 60; return minute; }/*from www .ja v a 2 s .c o m*/ }