|
|
@ -43,10 +43,6 @@ public class MicroDate {
|
|
|
|
return (int) ((modified / day) % 262144L);
|
|
|
|
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) {
|
|
|
|
public static int microDateHoursInt(final long time) {
|
|
|
|
return (int) ((time / hour) % 262144L);
|
|
|
|
return (int) ((time / hour) % 262144L);
|
|
|
|
}
|
|
|
|
}
|
|
|
|