Remove deprecated function usage
This commit is contained in:
@@ -1,9 +1,7 @@
|
|||||||
package kotlin
|
package kotlin
|
||||||
|
|
||||||
import kotlin.properties.*
|
|
||||||
|
|
||||||
/** Line separator for current system. */
|
/** Line separator for current system. */
|
||||||
private val LINE_SEPARATOR: String by Delegates.lazy { System.getProperty("line.separator")!! }
|
private val LINE_SEPARATOR: String by lazy { System.getProperty("line.separator")!! }
|
||||||
|
|
||||||
/** Appends a line separator to this Appendable. */
|
/** Appends a line separator to this Appendable. */
|
||||||
public fun Appendable.appendln(): Appendable = append(LINE_SEPARATOR)
|
public fun Appendable.appendln(): Appendable = append(LINE_SEPARATOR)
|
||||||
|
|||||||
Reference in New Issue
Block a user