Here you can find the source of millis2minutes(long millis)
public static long millis2minutes(long millis)
//package com.java2s; /******************************************************************************* * Copyright (c) 2012 Pivotal Software, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-v10.html * * Contributors://from ww w . java 2 s. c o m * Pivotal Software, Inc. - initial API and implementation *******************************************************************************/ public class Main { public static long millis2minutes(long millis) { return millis / (1000 * 60); } }