/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: Tim Marston
  • Date: 2013-06-22 17:29:31 UTC
  • Revision ID: tim@ed.am-20130622172931-ujydoni23t3a543b
minor style tweaks

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * VCFImporter.java
3
3
 *
4
 
 * Copyright (C) 2009 to 2013 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2009 to 2011 Tim Marston <tim@ed.am>
5
5
 *
6
6
 * This file is part of the Import Contacts program (hereafter referred
7
7
 * to as "this program").  For more information, see
723
723
                                        parseLABEL( name_param_parts, complete_value );
724
724
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "NOTE" ) )
725
725
                                        parseNOTE( name_param_parts, complete_value );
726
 
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "BDAY" ) )
727
 
                                        parseBDAY( name_param_parts, complete_value );
728
726
                        }
729
727
                }
730
728
 
1031
1029
                        addNote( unescapeValue( value ) );
1032
1030
                }
1033
1031
 
1034
 
                private void parseBDAY( String[] params, String value )
1035
 
                {
1036
 
                        setBirthday( value );
1037
 
                }
1038
 
 
1039
1032
                public void finaliseVcard()
1040
1033
                        throws ParseException, ContactNotIdentifiableException
1041
1034
                {