author | naoto |
Tue, 29 Mar 2016 17:06:33 -0700 | |
changeset 36739 | 145210aba850 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
14952 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
14962 | 3 |
* @bug 8004832 |
4 |
* @summary Add new doclint package |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
14962
diff
changeset
|
5 |
* @modules jdk.compiler/com.sun.tools.doclint |
14952 | 6 |
* @build DocLintTester |
7 |
* @run main DocLintTester -Xmsgs:-syntax EmptySerialDataTest.java |
|
8 |
* @run main DocLintTester -Xmsgs:syntax -ref EmptySerialDataTest.out EmptySerialDataTest.java |
|
9 |
*/ |
|
10 |
||
11 |
import java.io.ObjectOutputStream; |
|
12 |
import java.io.Serializable; |
|
13 |
||
14 |
/** . */ |
|
15 |
public class EmptySerialDataTest implements Serializable { |
|
16 |
/** @serialData */ |
|
17 |
private void writeObject(ObjectOutputStream s) { } |
|
18 |
} |