mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
override: fix param names in javadoc (IDEA-114557)
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
import java.util.*;
|
||||
abstract class IX<T> {
|
||||
/**
|
||||
* @param t the param
|
||||
*/
|
||||
abstract void foo(T t){}
|
||||
}
|
||||
|
||||
class XXC extends IX<List<String>> {
|
||||
/**
|
||||
* @param strings the param
|
||||
*/
|
||||
@Override
|
||||
void foo(List<String> strings) {
|
||||
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import java.util.*;
|
||||
abstract class IX<T> {
|
||||
/**
|
||||
* @param t the param
|
||||
*/
|
||||
abstract void foo(T t){}
|
||||
}
|
||||
|
||||
class XXC extends IX<List<String>> {
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user