Merge change I7c66eb48 into eclair-mr2
* changes:
Remove an unused and inconvenient import statement.
diff --git a/src/com/android/contacts/ImportVCardActivity.java b/src/com/android/contacts/ImportVCardActivity.java
index 4b5eeac..b306528 100644
--- a/src/com/android/contacts/ImportVCardActivity.java
+++ b/src/com/android/contacts/ImportVCardActivity.java
@@ -32,7 +32,7 @@
import android.os.PowerManager;
import android.pim.vcard.VCardEntryCommitter;
import android.pim.vcard.VCardInterpreter;
-import android.pim.vcard.VCardInterPreterCollection;
+import android.pim.vcard.VCardInterpreterCollection;
import android.pim.vcard.VCardConfig;
import android.pim.vcard.VCardEntryConstructor;
import android.pim.vcard.VCardEntryCounter;
@@ -202,7 +202,7 @@
}
VCardEntryCounter counter = new VCardEntryCounter();
VCardSourceDetector detector = new VCardSourceDetector();
- VCardInterPreterCollection builderCollection = new VCardInterPreterCollection(
+ VCardInterpreterCollection builderCollection = new VCardInterpreterCollection(
Arrays.asList(counter, detector));
boolean result;