summaryrefslogtreecommitdiffstats
path: root/core/java/android/pim
diff options
context:
space:
mode:
authorJaikumar Ganesh <jaikumar@google.com>2010-05-13 13:41:37 -0700
committerJaikumar Ganesh <jaikumar@google.com>2010-05-13 13:41:37 -0700
commit26888576f7051e3c748a30df0e787909724d9b6e (patch)
treeb51c75991b4cfbbda6d47943d2e1fb2dfd3931ba /core/java/android/pim
parent8d64c9bbcef14f94dc3fe41e69a54ba3ec0222cf (diff)
downloadframeworks_base-26888576f7051e3c748a30df0e787909724d9b6e.zip
frameworks_base-26888576f7051e3c748a30df0e787909724d9b6e.tar.gz
frameworks_base-26888576f7051e3c748a30df0e787909724d9b6e.tar.bz2
Remove duplicate definition of flag.
Change-Id: I9bdcdf5f12677162f0b735a277fce8a75fa13d39
Diffstat (limited to 'core/java/android/pim')
-rw-r--r--core/java/android/pim/vcard/VCardConfig.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/core/java/android/pim/vcard/VCardConfig.java b/core/java/android/pim/vcard/VCardConfig.java
index 1a2d2210..80709f3 100644
--- a/core/java/android/pim/vcard/VCardConfig.java
+++ b/core/java/android/pim/vcard/VCardConfig.java
@@ -251,30 +251,6 @@ public class VCardConfig {
*/
public static final int FLAG_TORELATE_NEST = 0x01000000;
- /**
- * <P>
- * The flag indicating the vCard composer does touch nothing toward phone number Strings
- * but leave it as is.
- * </P>
- * <P>
- * The vCard specifications mention nothing toward phone numbers, while some devices
- * do (wrongly, but with innevitable reasons).
- * For example, there's a possibility Japanese mobile phones are expected to have
- * just numbers, hypens, plus, etc. but not usual alphabets, while US mobile phones
- * should get such characters. To make exported vCard simple for external parsers,
- * we have used {@link PhoneNumberUtils#formatNumber(String)} during export, and
- * removed unnecessary characters inside the number (e.g. "111-222-3333 (Miami)"
- * becomes "111-222-3333").
- * Unfortunate side effect of that use was some control characters used in the other
- * areas may be badly affected by the formatting.
- * </P>
- * <P>
- * This flag disables that formatting, affecting both importer and exporter.
- * If the user is aware of some side effects due to the implicit formatting, use this flag.
- * </P>
- */
- public static final int FLAG_REFRAIN_PHONE_NUMBER_FORMATTING = 0x02000000;
-
//// The followings are VCard types available from importer/exporter. ////
/**