I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4b958246 authored by zzz's avatar zzz
Browse files

SusiMail: Static DateFormatters

parent 70b2dbec
No related branches found
No related tags found
No related merge requests found
...@@ -280,17 +280,19 @@ class Mail { ...@@ -280,17 +280,19 @@ class Mail {
} }
} }
private void parseHeaders() private static final DateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm");
{ private static DateFormat localDateFormatter = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
DateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm"); private static DateFormat longLocalDateFormatter = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
DateFormat localDateFormatter = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT); private static DateFormat mailDateFormatter = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.ENGLISH );
DateFormat longLocalDateFormatter = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM); static {
// the router sets the JVM time zone to UTC but saves the original here so we can get it // the router sets the JVM time zone to UTC but saves the original here so we can get it
TimeZone tz = SystemVersion.getSystemTimeZone(); TimeZone tz = SystemVersion.getSystemTimeZone();
localDateFormatter.setTimeZone(tz); localDateFormatter.setTimeZone(tz);
longLocalDateFormatter.setTimeZone(tz); longLocalDateFormatter.setTimeZone(tz);
DateFormat mailDateFormatter = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.ENGLISH ); }
private void parseHeaders()
{
error = ""; error = "";
if( header != null ) { if( header != null ) {
...@@ -340,11 +342,13 @@ class Mail { ...@@ -340,11 +342,13 @@ class Mail {
else if (hlc.startsWith("date:")) { else if (hlc.startsWith("date:")) {
dateString = line.substring( 5 ).trim(); dateString = line.substring( 5 ).trim();
try { try {
date = mailDateFormatter.parse( dateString ); synchronized(mailDateFormatter) {
formattedDate = dateFormatter.format( date ); date = mailDateFormatter.parse( dateString );
localFormattedDate = localDateFormatter.format( date ); formattedDate = dateFormatter.format( date );
//quotedDate = html.encode( dateString ); localFormattedDate = localDateFormatter.format( date );
quotedDate = longLocalDateFormatter.format(date); //quotedDate = html.encode( dateString );
quotedDate = longLocalDateFormatter.format(date);
}
} }
catch (ParseException e) { catch (ParseException e) {
date = null; date = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment