Implement post-refactoring optimization of unused imports
#KT-15822 Fixed #KT-13755 Fixed
This commit is contained in:
Vendored
-1
@@ -1,7 +1,6 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.A.B
|
||||
import test.C
|
||||
|
||||
fun foo2(): C {
|
||||
|
||||
Vendored
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.C
|
||||
|
||||
fun foo(): C {
|
||||
|
||||
Vendored
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A.B
|
||||
import test.C
|
||||
|
||||
fun foo(): C {
|
||||
|
||||
Vendored
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.B
|
||||
|
||||
fun foo(): B {
|
||||
|
||||
Vendored
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.B
|
||||
|
||||
fun foo2(): B {
|
||||
|
||||
Vendored
-1
@@ -1,7 +1,6 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.A.B
|
||||
|
||||
fun foo(): A.C {
|
||||
return A.C()
|
||||
|
||||
Vendored
-1
@@ -1,7 +1,6 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.A.B
|
||||
|
||||
fun foo(): A.C {
|
||||
return A.C()
|
||||
|
||||
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.B
|
||||
|
||||
fun foo(): B {
|
||||
|
||||
Vendored
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test3.D
|
||||
|
||||
fun foo(): D.C {
|
||||
|
||||
Vendored
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A.B
|
||||
import test3.D
|
||||
|
||||
fun foo(): D.C {
|
||||
|
||||
-1
@@ -1,6 +1,5 @@
|
||||
package test2
|
||||
|
||||
import test.A
|
||||
import test.B
|
||||
|
||||
fun foo(): B {
|
||||
|
||||
Reference in New Issue
Block a user