10 lines
271 B
Plaintext
Vendored
10 lines
271 B
Plaintext
Vendored
// "Mark as @Deprecated(..., level = DeprecationLevel.HIDDEN)" "true"
|
|
import java.io.File
|
|
|
|
@Deprecated(
|
|
"Is replaced with automatic synthetic extension",
|
|
ReplaceWith("name"),
|
|
level = DeprecationLevel.HIDDEN
|
|
)
|
|
val File.<caret>name: String
|
|
get() = getName() |