Rename mislabeled TimestampUtils#getMinutesFromTimestamp Method to TimestampUtils#timestampToWholeMinutes

This commit is contained in:
CrushedPixel
2015-07-17 12:15:10 +02:00
parent 71952e94dd
commit efd82861c2
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ package eu.crushedpixel.replaymod.utils;
public class TimestampUtils {
public static int getMinutesFromTimestamp(long timestamp) {
public static int timestampToWholeMinutes(long timestamp) {
return (int)(timestamp / (1000*60));
}