I’m going through the GWT Tutorials and after entering this line, my IDE complains that
the call to DateTimeFormat.getMediumDateTimeFormat() is deprecated:
lastUpdatedLabel.setText(“Last update:
” +
DateTimeFormat.getMediumDateTimeFormat().format(new
Date()));
How do I have to replace the call?
According to this documentation, you need to use
getFormat(DateTimeFormat.PredefinedFormat.DATE_MEDIUM)