From b9347eeed3247eef4ebae898d794edfafc3bd49a Mon Sep 17 00:00:00 2001 From: Ilya Zorin Date: Fri, 28 Apr 2017 01:46:32 +0300 Subject: [PATCH] Remove Kotlin section from readme (#780) --- README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/README.md b/README.md index d70476434..1969d84fc 100644 --- a/README.md +++ b/README.md @@ -209,18 +209,6 @@ public abstract class Tweet { } ``` -`Kotlin`: - -In order to make annotation processors work with Kotlin you need to add the following to your `build.gradle`: -```groovy -apply plugin: 'kotlin-kapt' -``` - -```kotlin -@StorIOSQLiteType(table = "tweets") data class Tweet @StorIOSQLiteCreator constructor(@get:StorIOSQLiteColumn(name = "author") val author: String, - @get:StorIOSQLiteColumn(name = "content") val content: String) -``` - Annotation Processor will generate three classes in same package as annotated class during compilation: * `TweetStorIOSQLitePutResolver`