mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-142762 Documentation view does not preserve documentation for renamed method parameters
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import java.lang.Override;
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param foo description
|
||||
*/
|
||||
void m(int foo) {}
|
||||
}
|
||||
|
||||
class Bar extends Foo {
|
||||
@Override
|
||||
void m(int bar) {}
|
||||
}
|
||||
Reference in New Issue
Block a user