StdLib cleanup, deprecated symbol usage: List and Map members

This commit is contained in:
Ilya Gorbunov
2015-11-14 06:21:17 +03:00
parent 838109c302
commit dadcdb5771
15 changed files with 51 additions and 51 deletions
@@ -61,8 +61,8 @@ public class AnnotationListParseTest {
val actualAnnotations = StringBuilder()
parsedAnnotations.forEach {
for (element in it.getValue()) {
actualAnnotations.append(it.getKey()).append(' ').append(element.classFqName)
for (element in it.value) {
actualAnnotations.append(it.key).append(' ').append(element.classFqName)
when (element) {
is AnnotatedMethodDescriptor -> actualAnnotations.append(' ').append(element.methodName)
is AnnotatedFieldDescriptor -> actualAnnotations.append(' ').append(element.fieldName)