From 3b3c2841674d9b7044494d16d4396662d273f1f9 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 4 Jan 2016 19:39:39 +0100 Subject: cleanup: remove redundant 'public' modifiers --- core/src/main/kotlin/Model/DocumentationReference.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/src/main/kotlin/Model/DocumentationReference.kt') diff --git a/core/src/main/kotlin/Model/DocumentationReference.kt b/core/src/main/kotlin/Model/DocumentationReference.kt index 898c92d7..99a1f434 100644 --- a/core/src/main/kotlin/Model/DocumentationReference.kt +++ b/core/src/main/kotlin/Model/DocumentationReference.kt @@ -2,8 +2,8 @@ package org.jetbrains.dokka import com.google.inject.Singleton -public data class DocumentationReference(val from: DocumentationNode, val to: DocumentationNode, val kind: DocumentationReference.Kind) { - public enum class Kind { +data class DocumentationReference(val from: DocumentationNode, val to: DocumentationNode, val kind: DocumentationReference.Kind) { + enum class Kind { Owner, Member, InheritedMember, -- cgit