mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
javadoc: include all throws unchecked exceptions from all super methods (IDEA-152938)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
interface I {
|
||||
/**
|
||||
* @throws NullPointerException blah-blah
|
||||
*/
|
||||
boolean contains(Object o) {}
|
||||
}
|
||||
interface My extends java.util.Collection, I {}
|
||||
class C {
|
||||
{
|
||||
My m = null;
|
||||
m.<caret>contains(null);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user