removed superfluous date method

This commit is contained in:
Michael Peter Christen 2014-06-19 12:10:42 +02:00
parent 501d55cd35
commit e949071160

View File

@ -43,10 +43,6 @@ public class MicroDate {
return (int) ((modified / day) % 262144L);
}
public static String microDateHoursStr(final long time) {
return Base64Order.enhancedCoder.encodeLongSB(microDateHoursInt(time), 3).toString();
}
public static int microDateHoursInt(final long time) {
return (int) ((time / hour) % 262144L);
}