2012-12-17 15:47:05 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2020-06-19 18:04:52 +00:00
|
|
|
* @bug 8004832 8247815
|
2012-12-20 17:59:46 +00:00
|
|
|
* @summary Add new doclint package
|
2015-05-21 18:41:04 +00:00
|
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
2012-12-17 15:47:05 +00:00
|
|
|
* @build DocLintTester
|
2020-06-19 18:04:52 +00:00
|
|
|
* @run main DocLintTester -Xmsgs:-missing EmptyParamTest.java
|
|
|
|
* @run main DocLintTester -Xmsgs:missing -ref EmptyParamTest.out EmptyParamTest.java
|
2012-12-17 15:47:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** . */
|
|
|
|
public class EmptyParamTest {
|
|
|
|
/** @param i */
|
2020-06-19 18:04:52 +00:00
|
|
|
void emptyParam(int i) { }
|
2012-12-17 15:47:05 +00:00
|
|
|
}
|