Fixed external annotations for listIterator() of AbstractSequentialList and LinkedList.

Now they return MutableListIterator instead of read-only one.
This commit is contained in:
Evgeny Gerashchenko
2012-11-19 17:26:16 +04:00
parent 059c6d0673
commit 41f5c64607
+2 -2
View File
@@ -469,7 +469,7 @@
</item>
<item name='java.util.LinkedList java.util.ListIterator<E> listIterator(int)'>
<annotation name='jet.runtime.typeinfo.KotlinSignature'>
<val name="value" val="&quot;fun listIterator(index : Int) : ListIterator&lt;E&gt;&quot;"/>
<val name="value" val="&quot;fun listIterator(index : Int) : MutableListIterator&lt;E&gt;&quot;"/>
</annotation>
</item>
<item name='java.util.LinkedList boolean offer(E)'>
@@ -724,7 +724,7 @@
</item>
<item name='java.util.AbstractSequentialList java.util.ListIterator<E> listIterator(int)'>
<annotation name='jet.runtime.typeinfo.KotlinSignature'>
<val name="value" val="&quot;fun listIterator(index : Int) : ListIterator&lt;E&gt;&quot;"/>
<val name="value" val="&quot;fun listIterator(index : Int) : MutableListIterator&lt;E&gt;&quot;"/>
</annotation>
</item>
<item name='java.util.AbstractSequentialList E remove(int)'>