Let Kotlin generate the overloaded constructors for Java
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 13 Oct 2017 05:59:49 +0000 (07:59 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 13 Oct 2017 05:59:49 +0000 (07:59 +0200)
src/main/kotlin/net/pterodactylus/sone/text/LinkPart.kt

index 7099b93..3563b37 100644 (file)
@@ -5,8 +5,4 @@ package net.pterodactylus.sone.text
  * attributes: the link itself, the text that is shown instead of the link, and
  * an explanatory text that can be displayed e.g. as a tooltip.
  */
-data class LinkPart(val link: String, override val text: String, val title: String) : Part {
-
-       constructor(link: String, text: String) : this(link, text, link)
-
-}
+data class LinkPart @JvmOverloads constructor(val link: String, override val text: String, val title: String = link) : Part