rvandoosselaer / Blocks

A block (voxel) engine for jMonkeyEngine
BSD 3-Clause "New" or "Revised" License
41 stars 14 forks source link

Solve javadoc errors #71

Closed stephengold closed 1 year ago

stephengold commented 1 year ago

I tried "./build javadoc" on the "master" branch, but there were many warnings and errors. This PR solves the errors.

rvandoosselaer commented 1 year ago

Thanks for the PR. The errors in the javadoc shouldn't block the build however. I added this snippet in build.gradle:

javadoc {
    failOnError = false
}

I ran into the same issue when upgrading the java version. The auto-generated @author tags started giving issues. I didn't fix this properly as I wanted to revamp the javadoc in the same go.

stephengold commented 1 year ago

Thanks for the attention. I should've mentioned that I was using Java 17.