mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
collect transitive dependant type parameters (IDEA-174194)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
protected <T> void applyChanges(final T variable) {
|
||||
protected <T extends java.util.List<K>, K> void applyChanges(final T variable) {
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
protected <T> void applyChanges(final T variable) {
|
||||
protected <T extends java.util.List<K>, K> void applyChanges(final T variable) {
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
@@ -9,7 +9,7 @@ class Test {
|
||||
;
|
||||
}
|
||||
|
||||
private <T> void newMethod(T variable) {
|
||||
private <T extends java.util.List<K>, K> void newMethod(T variable) {
|
||||
System.out.println(variable);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user