mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-09-27 22:26:23 +02:00
Fixes date format's year
This commit is contained in:
@@ -29,7 +29,7 @@ public class VerifyResult implements Comparable<VerifyResult> {
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
String pattern = "YYYY-MM-dd z";
|
String pattern = "yyyy-MM-dd z";
|
||||||
Locale locale = new Locale("en", "UK");
|
Locale locale = new Locale("en", "UK");
|
||||||
DateFormatSymbols dateFormatSymbols = new DateFormatSymbols(locale);
|
DateFormatSymbols dateFormatSymbols = new DateFormatSymbols(locale);
|
||||||
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern, dateFormatSymbols);
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern, dateFormatSymbols);
|
||||||
|
Reference in New Issue
Block a user