diff --git a/core/java/android/net/http/SslCertificate.java b/core/java/android/net/http/SslCertificate.java index 2715af0261df4..4c0f4181e83f3 100644 --- a/core/java/android/net/http/SslCertificate.java +++ b/core/java/android/net/http/SslCertificate.java @@ -506,6 +506,6 @@ public class SslCertificate { if (certificateDate == null) { return ""; } - return DateFormat.getDateFormat(context).format(certificateDate); + return DateFormat.getMediumDateFormat(context).format(certificateDate); } }