Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-aarch32-jdk8u
Path: blob/jdk8u272-b10-aarch32-20201026/langtools/test/tools/doclint/MissingCommentTest.java
48584 views
1
/*
2
* @test /nodynamiccopyright/
3
* @build DocLintTester
4
* @run main DocLintTester -Xmsgs:-missing MissingCommentTest.java
5
* @run main DocLintTester -Xmsgs:missing -ref MissingCommentTest.out MissingCommentTest.java
6
*/
7
8
public class MissingCommentTest {
9
MissingCommentTest() { }
10
11
int missingComment;
12
13
void missingComment() { }
14
}
15
16