Files
kotlin-fork/idea/testData/inspections/javaCollectionsStaticMethodOnImmutableList/inspectionData/expected.xml
T
Toshiaki Kameyama 7d6cb7805c Add inspection: Java mutator method used on immutable Kotlin Collections
In particular, fill, reverse, shuffle, sort calls are reported
So #KT-22011 Fixed
2018-02-28 11:52:44 +03:00

11 lines
477 B
XML
Vendored

<problems>
<problem>
<file>test.kt</file>
<line>5</line>
<module>light_idea_test_case</module>
<entry_point TYPE="file" FQNAME="test.kt" />
<problem_class severity="WARNING" attribute_key="WARNING_ATTRIBUTES">Immutable Kotlin collection may be changed with Java Collections method</problem_class>
<description>The 'immutableList' may be changed with Java Collections method 'reverse'</description>
</problem>
</problems>