add comment

This commit is contained in:
Eric House 2014-08-10 19:44:40 -07:00
parent feb9510b9d
commit bc33d0b81f

View file

@ -415,6 +415,8 @@ public class Utils {
public static long getCurSeconds()
{
// Note: an int is big enough for *seconds* (not milliseconds) since 1970
// until 2038
long millis = new Date().getTime();
int result = (int)(millis / 1000);
return result;