Split SpecifyTypeExplicitly intention into two + refactored them completely
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This intention removes explicit type specification for local values, variables, properties and functions.
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,5 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
This intention adds or removes explicit type specification for local values, variables and properties.
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
fun main() {
|
||||
val a <spot>: Array<Int></spot> = array(1, 2, 3)
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun main() {
|
||||
val <spot>a</spot> = array(1, 2, 3)
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This intention adds explicit type specification for local values, variables, properties and functions.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user