Hey David,
I don't really understand your code:
[CODE]
Date dt = sdf.parse(entry.getTimes().get(0).getStartTime().toUiString());
Calendar cal = Calendar.getInstance();
Calendar calTest = new
GregorianCalendar(TimeZone.getTimeZone("America/New_York"), Locale.US);
// ------->
// *Why are you setting calTest to a new Calendar object?*
calTest = Calendar.getInstance();
// <-------
calTest.setTime(new
Date(entry.getTimes().get(0).getStartTime().getValue()));
cal.setTime(dt);
[/CODE]
Best,
Alain
--
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" 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://code.google.com/apis/calendar/community/forum.html