Merge "Display longer date string in certificate information"

This commit is contained in:
TreeHugger Robot
2017-02-23 15:23:34 +00:00
committed by Android (Google) Code Review

View File

@@ -506,6 +506,6 @@ public class SslCertificate {
if (certificateDate == null) {
return "";
}
return DateFormat.getDateFormat(context).format(certificateDate);
return DateFormat.getMediumDateFormat(context).format(certificateDate);
}
}