Changeset 523


Ignore:
Timestamp:
10/29/09 18:24:59 (2 years ago)
Author:
octorian
Message:

Merge of mail header parsing fix (#161)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LogicMail/src/org/logicprobe/LogicMail/util/StringParser.java

    r522 r523  
    5858    private static final long ONE_MINUTE = ONE_SECOND * 60; 
    5959    private static final long ONE_HOUR = ONE_MINUTE * 60; 
     60    private static String ENCODING_UTF8 = "UTF-8"; 
    6061 
    6162    private StringParser() { 
     
    681682                try { 
    682683                    text = new String(textBytes, ENCODING_UTF8); 
    683                 } catch (UnsupportedEncodingException e) { } 
     684                } catch (UnsupportedEncodingException e) { 
     685                } 
    684686 
    685687                break; 
Note: See TracChangeset for help on using the changeset viewer.