HADOOP-15574: Suppress build error if there are no docs after excluding private annotations. Contributed by Takanobu Asanuma.
This commit is contained in:
parent
cdb084426b
commit
d40121845e
@ -38,7 +38,11 @@ public static LanguageVersion languageVersion() {
|
||||
public static boolean start(RootDoc root) {
|
||||
System.out.println(
|
||||
ExcludePrivateAnnotationsStandardDoclet.class.getSimpleName());
|
||||
return Standard.start(RootDocProcessor.process(root));
|
||||
RootDoc excludedDoc = RootDocProcessor.process(root);
|
||||
if (excludedDoc.specifiedPackages().length == 0) {
|
||||
return true;
|
||||
}
|
||||
return Standard.start(excludedDoc);
|
||||
}
|
||||
|
||||
public static int optionLength(String option) {
|
||||
|
Loading…
Reference in New Issue
Block a user