Enable checkstyle on cscore, ntcore, wpiutil (#1032)

Also update to version 8.10.
This commit is contained in:
Austin Shalit
2018-05-24 00:31:04 -04:00
committed by Peter Johnson
parent ecfe95383c
commit 40cc743cc7
142 changed files with 1038 additions and 970 deletions

View File

@@ -10,6 +10,9 @@ package edu.wpi.first.wpilibj.commands.commandgroup;
import edu.wpi.first.wpilibj.command.CommandGroup;
public class ReplaceMeCommandGroup extends CommandGroup {
/**
* Add your docs here.
*/
public ReplaceMeCommandGroup() {
// Add Commands here:
// e.g. addSequential(new Command1());

View File

@@ -13,6 +13,9 @@ import edu.wpi.first.wpilibj.command.InstantCommand;
* Add your docs here.
*/
public class ReplaceMeInstantCommand extends InstantCommand {
/**
* Add your docs here.
*/
public ReplaceMeInstantCommand() {
super();
// Use requires() here to declare subsystem dependencies

View File

@@ -13,7 +13,9 @@ import edu.wpi.first.wpilibj.command.PIDSubsystem;
* Add your docs here.
*/
public class ReplaceMePIDSubsystem extends PIDSubsystem {
// Initialize your subsystem here
/**
* Add your docs here.
*/
public ReplaceMePIDSubsystem() {
// Intert a subsystem name and PID values here
super("SubsystemName", 1, 2, 3);

View File

@@ -13,6 +13,9 @@ import edu.wpi.first.wpilibj.command.TimedCommand;
* Add your docs here.
*/
public class ReplaceMeTimedCommand extends TimedCommand {
/**
* Add your docs here.
*/
public ReplaceMeTimedCommand(double timeout) {
super(timeout);
// Use requires() here to declare subsystem dependencies