/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/VcardImporter.java

  • Committer: edam
  • Date: 2012-12-21 15:50:09 UTC
  • Revision ID: tim@ed.am-20121221155009-exbirzrfx4p95ipj
fixed some column valuesa dn a broken check to contatinate name parts with spaces

Show diffs side-by-side

added added

removed removed

843
843
                                        for( int b = 0; b < name_part_parts.length; b++ )
844
844
                                                if( name_part_parts[ b ].length() > 0 )
845
845
                                                {
846
 
                                                        if( value.length() == 0 ) value += " ";
 
846
                                                        if( value.length() > 0 ) value += " ";
847
847
                                                        value += name_part_parts[ b ];
848
848
                                                }
849
849
                                }