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/AbLabel.kt')
-rw-r--r--src/main/java/at/bitfire/vcard4android/property/AbLabel.kt15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/java/at/bitfire/vcard4android/property/AbLabel.kt b/src/main/java/at/bitfire/vcard4android/property/AbLabel.kt
deleted file mode 100644
index 94a7c6b..0000000
--- a/src/main/java/at/bitfire/vcard4android/property/AbLabel.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package at.bitfire.vcard4android.property
-
-import ezvcard.io.scribe.StringPropertyScribe
-import ezvcard.property.TextProperty
-
-class AbLabel(value: String?): TextProperty(value) {
-
- object Scribe :
- StringPropertyScribe<AbLabel>(AbLabel::class.java, "X-ABLabel") {
-
- override fun _parseValue(value: String?) = AbLabel(value)
-
- }
-
-} \ No newline at end of file