getFormattedDateShort static method

String getFormattedDateShort(
  1. int time
)

Implementation

static String getFormattedDateShort(int time) {
  DateFormat newFormat = new DateFormat("MMM dd, yyyy");
  return newFormat.format(new DateTime.fromMillisecondsSinceEpoch(time));
}