Fixed bug in reference shortening related on on the fly import optimization

This commit is contained in:
Valentin Kipyatkov
2015-03-02 21:04:39 +03:00
parent 862d391da6
commit 5b4afa140b
4 changed files with 20 additions and 1 deletions
@@ -0,0 +1,5 @@
// OPTIMIZE_IMPORTS: true
// NAME_COUNT_TO_USE_STAR_IMPORT: 1
import java.util.HashMap
val v: HashMap<String, <selection>java.util.Date</selection>>
@@ -0,0 +1,5 @@
// OPTIMIZE_IMPORTS: true
// NAME_COUNT_TO_USE_STAR_IMPORT: 1
import java.util.*
val v: HashMap<String, Date>