Removed @author from comments (#88)

Keeping @author lines in the comments serves no functional purpose.
This commit is contained in:
Tyler Veness
2016-05-29 09:24:04 -07:00
committed by Peter Johnson
parent 7a402b4170
commit 2f7eff7091
125 changed files with 1 additions and 258 deletions

View File

@@ -16,8 +16,6 @@ import static org.junit.Assert.fail;
/**
* The basic test for all {@link Command} tests.
*
* @author jonathanleitschuh
*/
public abstract class AbstractCommandTest {

View File

@@ -16,9 +16,6 @@ import edu.wpi.first.wpilibj.buttons.InternalButton;
/**
* Test that covers the {@link edu.wpi.first.wpilibj.buttons.Button} with the {@link Command}
* library.
*
* @author Mitchell
* @author jonathanleitschuh
*/
public class ButtonTest extends AbstractCommandTest {
private InternalButton m_button1;

View File

@@ -11,9 +11,6 @@ import org.junit.Test;
/**
* Ported from the old CrioTest Classes.
*
* @author Mitchell
* @author Jonathan Leitschuh
*/
public class CommandParallelGroupTest extends AbstractCommandTest {

View File

@@ -11,9 +11,6 @@ import org.junit.Test;
/**
* Ported from the old CrioTest Classes.
*
* @author Mitchell
* @author Jonathan Leitschuh
*/
public class CommandScheduleTest extends AbstractCommandTest {

View File

@@ -13,9 +13,6 @@ import java.util.logging.Logger;
/**
* Ported from the old CrioTest Classes.
*
* @author Mitchell
* @author Jonathan Leitschuh
*/
public class CommandSequentialGroupTest extends AbstractCommandTest {
private static Logger logger = Logger.getLogger(CommandSequentialGroupTest.class.getName());

View File

@@ -13,9 +13,6 @@ import java.util.logging.Logger;
/**
* Ported from the old CrioTest Classes.
*
* @author Mitchell
* @author Jonathan Leitschuh
*/
public class CommandSupersedeTest extends AbstractCommandTest {
private static final Logger logger = Logger.getLogger(CommandSupersedeTest.class.getName());

View File

@@ -11,9 +11,6 @@ import org.junit.Test;
/**
* Test a {@link Command} that times out.
*
* @author jonathanleitschuh
*
*/
public class CommandTimeoutTest extends AbstractCommandTest {

View File

@@ -11,8 +11,6 @@ import org.junit.Test;
/**
* Tests the {@link Command} library.
*
* @author jonathanleitschuh
*/
public class DefaultCommandTest extends AbstractCommandTest {

View File

@@ -10,8 +10,6 @@ package edu.wpi.first.wpilibj.command;
/**
* A class to simulate a simple command The command keeps track of how many times each method was
* called.
*
* @author mwills
*/
public class MockCommand extends Command {
private int m_initializeCount = 0;