Skip to content
Snippets Groups Projects
Commit 4e014763 authored by JustAnotherChristoph's avatar JustAnotherChristoph Committed by Sören Henning
Browse files

resolved name shadowing

parent 69f9c870
No related branches found
No related tags found
1 merge request!276Partially fixed IntelliJ warnings (#361)
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