Skip to content

Commit

Permalink
Use doclint option -missing instead of none.
Browse files Browse the repository at this point in the history
  • Loading branch information
ueshin committed Nov 4, 2014
1 parent 30d6718 commit 923e2f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalparam>-Xdoclint:-missing</additionalparam>
</configuration>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion project/SparkBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ object SparkBuild extends PomBuild {

javacOptions in (Compile, doc) ++= {
val Array(major, minor, _) = System.getProperty("java.version").split("\\.", 3)
if (major.toInt >= 1 && minor.toInt >= 8) Seq("-Xdoclint:none") else Seq.empty
if (major.toInt >= 1 && minor.toInt >= 8) Seq("-Xdoclint:-missing") else Seq.empty
}
)

Expand Down

0 comments on commit 923e2f0

Please sign in to comment.