Remove usages of Delegates.lazy

This commit is contained in:
Ilya Gorbunov
2015-10-14 00:01:37 +03:00
parent c4ef4758d2
commit 2fba80168d
3 changed files with 6 additions and 6 deletions
@@ -93,7 +93,7 @@ public abstract class AnnotationCollectorExtensionBase(val supportInheritedAnnot
annotationFilters = nullableAnnotations.filterNotNull()
}
private val classVisitor: ClassVisitor by Delegates.lazy {
private val classVisitor: ClassVisitor by lazy {
object : ClassVisitor(Opcodes.ASM5, super.getVisitor()) {
override fun visitAnnotation(desc: String, visible: Boolean): AnnotationVisitor? {
recordAnnotation(null, RecordTypes.ANNOTATED_CLASS, desc)