All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yy.androidlib.util.date.TimeUtils Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.yy.androidlib.util.date;

import java.util.Date;

public class TimeUtils {

    public static final long MS_PER_MINUTE = 60 * 1000;

    public static Date minuteBefore(int minute) {
        return new Date(System.currentTimeMillis() - minute * MS_PER_MINUTE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy