e2bd09e6f6
Reviewed-by: jjh
18 lines
489 B
Java
18 lines
489 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8004832
|
|
* @summary Add new doclint package
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -Xmsgs:-syntax EmptySerialDataTest.java
|
|
* @run main DocLintTester -Xmsgs:syntax -ref EmptySerialDataTest.out EmptySerialDataTest.java
|
|
*/
|
|
|
|
import java.io.ObjectOutputStream;
|
|
import java.io.Serializable;
|
|
|
|
/** . */
|
|
public class EmptySerialDataTest implements Serializable {
|
|
/** @serialData */
|
|
private void writeObject(ObjectOutputStream s) { }
|
|
}
|