Bernhard
private inline fun <reified T> parseFile(files: Map<String, Path>, fileName: String, mapper: ObjectMapper): Array<T> = files[fileName] ?.toFile() ?.readText() ?.let { mapper.readValue<Array<T>>(it) } ?: emptyArray()
at.lhes.sws.locationclient.model.Division
A modern programming language that makes developers happier.