[build] Treat javadoc warnings as errors in CI and fix warnings (#3530)

This commit is contained in:
Tyler Veness
2021-08-28 20:48:47 -07:00
committed by GitHub
parent e0c6cd3dcc
commit e5fe3a8e16
4 changed files with 17 additions and 1 deletions

View File

@@ -60,6 +60,7 @@ public class Transform2d {
* Composes two transformations.
*
* @param other The transform to compose with this one.
* @return The composition of the two transformations.
*/
public Transform2d plus(Transform2d other) {
return new Transform2d(new Pose2d(), new Pose2d().transformBy(this).transformBy(other));