projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
suggest to delete type arguments when they are not expected (IDEA-79300)
[idea/community.git]
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
quickFix
/
removeTypeArguments
/
beforeRemoveUnavailable.java
1
// "Remove type arguments" "false"
2
abstract class SomeClass<K, T> implements Some<K, T> {
3
public abstract void doSomething(K key, Node<caret><K, T> root);
4
}
5
class Node<G> {}
6
interface Some<II, OO>{}
7