mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
Fix javadoc warnings about invalid usage of ">" (#1904)
The trajectory gen docs use "->". ">" has been replaced with ">".
This commit is contained in:
committed by
Peter Johnson
parent
cce26ec78e
commit
b2c2934d05
@@ -38,7 +38,7 @@ public final class TrajectoryGenerator {
|
||||
* @param maxVelocityMetersPerSecond The max velocity for the trajectory.
|
||||
* @param maxAccelerationMetersPerSecondSq The max acceleration for the trajectory.
|
||||
* @param reversed Whether the robot should move backwards. Note that the
|
||||
* robot will still move from a -> b -> ... -> z
|
||||
* robot will still move from a -> b -> ... -> z
|
||||
* as defined in the waypoints.
|
||||
* @return The trajectory.
|
||||
*/
|
||||
@@ -93,8 +93,8 @@ public final class TrajectoryGenerator {
|
||||
* @param maxVelocityMetersPerSecond The max velocity for the trajectory.
|
||||
* @param maxAccelerationMetersPerSecondSq The max acceleration for the trajectory.
|
||||
* @param reversed Whether the robot should move backwards. Note that the
|
||||
* robot will still move from a -> b -> ... -> z as
|
||||
* defined in the waypoints.
|
||||
* robot will still move from a -> b -> ... -> z
|
||||
* as defined in the waypoints.
|
||||
* @return The trajectory.
|
||||
*/
|
||||
public static Trajectory generateTrajectory(
|
||||
|
||||
@@ -64,7 +64,8 @@ public final class TrajectoryParameterizer {
|
||||
* @param maxAccelerationMetersPerSecondSq The max acceleration for the trajectory.
|
||||
* @param reversed Whether the robot should move backwards.
|
||||
* Note that the robot will still move from
|
||||
* a -> b -> ... -> z as defined in the waypoints.
|
||||
* a -> b -> ... -> z as defined in the
|
||||
* waypoints.
|
||||
* @return The trajectory.
|
||||
*/
|
||||
@SuppressWarnings({"PMD.ExcessiveMethodLength", "PMD.CyclomaticComplexity",
|
||||
|
||||
Reference in New Issue
Block a user