org.telegram.mtproto.util.TimeUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
package org.telegram.mtproto.util;
/**
* Created by Ruben Bermudez on 13.11.13.
*/
public class TimeUtil {
public static int getUnixTime(long msgId) {
return (int) (msgId >> 32);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy