Files
kotlin-fork/idea/resources/inspectionDescriptions/RemoveRedundantQualifierName.html
T
2019-02-27 20:43:35 +03:00

13 lines
257 B
HTML

<html>
<body>
This inspection reports redundant qualifier name in references. For example:
<pre>
<b>package</b> my.simple.name
<b>class</b> Foo
<b>fun</b> test() {
<b>val</b> s = my.simple.name.Foo() // redundant qualifier name
}
</pre>
</body>
</html>