/android/export-contacts

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

« back to all changes in this revision

Viewing changes to src/org/waxworlds/edam/exportcontacts/VcardExporter.java

  • Committer: edam
  • Date: 2012-04-24 11:21:50 UTC
  • Revision ID: tim@ed.am-20120424112150-5a48rjoa9xpn1t2k
continued renaming contact readers to accessors

Show diffs side-by-side

added added

removed removed

176
176
                        return false;
177
177
 
178
178
                // append header
179
 
                out.append( "VCARD:BEGIN\n" );
 
179
                out.append( "BEGIN:VCARD\n" );
180
180
                out.append( "VERSION:3.0\n" );
181
181
 
182
182
                // append formatted name
276
276
                }
277
277
 
278
278
                // append footer
279
 
                out.append( "VCARD:END\n" );
 
279
                out.append( "END:VCARD\n" );
280
280
 
281
281
                // write to file
282
282
                try {