Okay, answered my own question. Because my literals for the 'long msecs' calc were just INTs, I was overflowing and resulting in a negative integer. So I added 'L' to the literals to make the arithmetic use longs and it works now.
long msecs = 90L*24L*60L*60L*1000L; // 90 days in milliseconds --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
