mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
7 lines
184 B
Java
Vendored
7 lines
184 B
Java
Vendored
import org.jetbrains.annotations.PropertyKey;
|
|
|
|
class J {
|
|
static String message(@PropertyKey(resourceBundle = "TestBundle") String key, Object... args) {
|
|
return key;
|
|
}
|
|
} |