Skip to content
Snippets Groups Projects
Commit 6bd85c8a authored by JustAnotherChristoph's avatar JustAnotherChristoph
Browse files

resolved name shadowing

parent 37c93e95
Branches
Tags
No related merge requests found
This commit is part of merge request !276. Comments created here will be created in the context of that merge request.
......@@ -31,8 +31,8 @@ data class PrometheusResponse(
for (value in values) {
val valueList = value as List<*>
val timestamp = (valueList[0] as Double).toLong().toString()
val value = valueList[1].toString()
result.add(listOf(group, timestamp, value))
val resultValue = valueList[1].toString()
result.add(listOf(group, timestamp, resultValue))
}
}
return Collections.unmodifiableList(result)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment