/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/am/ed/importcontacts/ContactsCache.java

  • Committer: Tim Marston
  • Date: 2014-03-02 10:59:21 UTC
  • Revision ID: tim@ed.am-20140302105921-0q7ytfva236xsv8s
removed some unused code, fixed locale warnings and made showContinueOrAbort()
abort implicitly (rather than return false)

Show diffs side-by-side

added added

removed removed

373
373
        static public String normaliseEmailAddress( String email )
374
374
        {
375
375
                if( email == null ) return null;
376
 
                email = email.trim().toLowerCase( Locale.US );
 
376
                email = email.trim().toLowerCase( Locale.ENGLISH );
377
377
                return email.length() > 0? email : null;
378
378
        }
379
379