Hi, whilst reading a book on Java, I came across a bit where the author used
GregorianCalendar now = new GregorainCalendar();
And I was just wondering, is that any different from
Calendar now = Calendar.getInstance();
And if so, why did he use GregorianCalendar instead of the normal one?