Remove deprecated function usage

This commit is contained in:
Sergey Mashkov
2015-08-12 13:37:47 +03:00
parent c0078a53e6
commit b146b0eda9
@@ -1,9 +1,7 @@
package kotlin
import kotlin.properties.*
/** 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. */
public fun Appendable.appendln(): Appendable = append(LINE_SEPARATOR)