Fixed testdata -- removed package import
This commit is contained in:
@@ -5,7 +5,6 @@ import java.sql.*
|
||||
import java.util.ArrayList // maybe dropped on adding import with *
|
||||
import java.util.Date // should not be dropped because of conflicting java.sql.Date class
|
||||
import java.util.HashSet as JavaHashSet // alias import should not be dropped
|
||||
import java.util.concurrent // import of package should not be dropped because packages are not imported by *
|
||||
|
||||
fun foo() {
|
||||
val v1 = JavaHashSet()
|
||||
|
||||
@@ -5,7 +5,6 @@ import java.sql.*
|
||||
import java.util.*
|
||||
import java.util.Date
|
||||
import java.util.HashSet as JavaHashSet // alias import should not be dropped
|
||||
import java.util.concurrent // import of package should not be dropped because packages are not imported by *
|
||||
|
||||
fun foo() {
|
||||
val v1 = JavaHashSet()
|
||||
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
// IMPORT: java.util
|
||||
package p
|
||||
|
||||
fun foo(): util.ArrayList<String> {}
|
||||
@@ -1,6 +0,0 @@
|
||||
// IMPORT: java.util
|
||||
package p
|
||||
|
||||
import java.util
|
||||
|
||||
fun foo(): util.ArrayList<String> {}
|
||||
@@ -1,6 +0,0 @@
|
||||
// IMPORT: java.util
|
||||
package p
|
||||
|
||||
import java.util
|
||||
|
||||
fun foo(): util.ArrayList<String> {}
|
||||
@@ -1,6 +0,0 @@
|
||||
// IMPORT: java.util
|
||||
package p
|
||||
|
||||
import java.util
|
||||
|
||||
fun foo(): util.ArrayList<String> {}
|
||||
Reference in New Issue
Block a user