| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Bas Leijdekkers |
| Subsystem | Editor. Error Highlighting |
| Affected versions |
No affected versions
|
| Fixed in |
No fix versions
|
| Fixed in build |
Next build |
| Build |
7757
|
| Fixed in build |
8230
|
IDEA-43213 |
wrong "unndeeded import static name.innerr.clazz" detection |
|
|
public class HistoricalFullQuoteCentral {
public static class HistoricalQuoteKey {
}
}
===========
package com.devexperts.tos.ui.user.centrals;import java.util.Collection;
import java.util.Collections;
import static com.devexperts.tos.ui.user.centrals.HistoricalFullQuoteCentral.HistoricalQuoteKey;
public class test {
private Collection<HistoricalQuoteKey> subscription = Collections.emptyList();
}