javadoc: process {@inheritDoc} for throws tags correctly (IDEA-62524)

This commit is contained in:
anna
2011-12-13 10:51:29 +01:00
parent fec375a9c2
commit b4523b4b7a
6 changed files with 62 additions and 3 deletions
@@ -0,0 +1,18 @@
import java.io.IOException;
class InheritedDocInThrows1 extends A{
/**
* @throws java.io.IOException comment
*/
void foo() throws IOException {
super.foo();
}
}
class A {
/**
* @throws java.io.IOException la-la-la
*/
void foo() throws IOException {
}
}