mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[docs] Fix various @see tags in Javadoc (#8644)
Most of these were leftovers from the reorg, the Commands v2 change is from the recent merge from main and fixes our builds again.
This commit is contained in:
@@ -39,7 +39,7 @@ public class WaitUntilCommand extends Command {
|
||||
* wait.
|
||||
*
|
||||
* @param time the match time after which to end, in seconds
|
||||
* @see edu.wpi.first.wpilibj.DriverStation#getMatchTime()
|
||||
* @see org.wpilib.driverstation.DriverStation#getMatchTime()
|
||||
*/
|
||||
public WaitUntilCommand(double time) {
|
||||
this(() -> Timer.getMatchTime() < time);
|
||||
|
||||
@@ -40,7 +40,7 @@ class WaitUntilCommand : public CommandHelper<Command, WaitUntilCommand> {
|
||||
* practice mode, the command will not wait.
|
||||
*
|
||||
* @param time the match time after which to end, in seconds
|
||||
* @see frc::DriverStation::GetMatchTime()
|
||||
* @see wpi::DriverStation::GetMatchTime()
|
||||
*/
|
||||
explicit WaitUntilCommand(wpi::units::second_t time);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user