Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/bitfire/vcard4android/property/PhoneticLastName.kt')
-rw-r--r--src/main/java/at/bitfire/vcard4android/property/PhoneticLastName.kt15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/java/at/bitfire/vcard4android/property/PhoneticLastName.kt b/src/main/java/at/bitfire/vcard4android/property/PhoneticLastName.kt
deleted file mode 100644
index c1dc171..0000000
--- a/src/main/java/at/bitfire/vcard4android/property/PhoneticLastName.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package at.bitfire.vcard4android.property
-
-import ezvcard.io.scribe.StringPropertyScribe
-import ezvcard.property.TextProperty
-
-class PhoneticLastName(value: String?): TextProperty(value) {
-
- object Scribe :
- StringPropertyScribe<PhoneticLastName>(PhoneticLastName::class.java, "X-PHONETIC-LAST-NAME") {
-
- override fun _parseValue(value: String?) = PhoneticLastName(value)
-
- }
-
-} \ No newline at end of file