mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
suggest to delete type arguments when they are not expected (IDEA-79300)
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
// "Remove type arguments" "true"
|
||||
abstract class SomeClass<K, T> implements Some<K, T> {
|
||||
public abstract void doSomething(K key, Node<caret> root);
|
||||
}
|
||||
class Node {}
|
||||
interface Some<II, OO>{}
|
||||
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// "Remove type arguments" "true"
|
||||
abstract class SomeClass<K, T> implements Some<K, T> {
|
||||
public abstract void doSomething(K key, Node<caret><K, T> root);
|
||||
}
|
||||
class Node {}
|
||||
interface Some<II, OO>{}
|
||||
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// "Remove type arguments" "false"
|
||||
abstract class SomeClass<K, T> implements Some<K, T> {
|
||||
public abstract void doSomething(K key, Node<caret><K, T> root);
|
||||
}
|
||||
class Node<G> {}
|
||||
interface Some<II, OO>{}
|
||||
|
||||
Reference in New Issue
Block a user