completion for older java versions: allow boxing even to specify explicit type arguments later when needed

fixing SmartTypeCompletionTest#testIfConditionExpectedType, consequence of changing expected type for condition from boxed to primitive
This commit is contained in:
Anna.Kozlova
2018-12-19 14:53:41 +01:00
parent 4af60ad9c5
commit a72e208a09
4 changed files with 21 additions and 1 deletions
@@ -6,7 +6,7 @@ class Foo<T> {
}
static {
new Foo<Integer>().to(Bar.<Integer>method(<caret>))
new Foo<Integer>().to(Bar.method(<caret>))
}
}