Skip to content

Commit f20535b

Browse files
author
James Hagborg
committed
Make the version of javadoc on travis happy.
1 parent cea092d commit f20535b

File tree

7 files changed

+9
-0
lines changed

7 files changed

+9
-0
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@ artifacts {
3939
// By default, checkstyle wants to look at tests
4040
// we override to only look at the main code
4141
checkstyle {
42+
toolVersion = '6.11.2'
4243
sourceSets = [project.sourceSets.main]
4344
}

src/main/java/org/usfirst/frc/team69/util/HYPERRobot.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public abstract class HYPERRobot extends IterativeRobot {
2222
* <li>"Helper classes" which depend on subsystems but have commands which
2323
* depend on them (like UserDrive and Vision in hypercode)</li>
2424
* <li>Commands, including autonomous commands and commands on the OI</li>
25+
* </ul>
2526
*/
2627
@Override
2728
public void robotInit() {

src/main/java/org/usfirst/frc/team69/util/oi/MapJoystick.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@
2828
public @interface MapJoystick {
2929
/**
3030
* The port the joystick is connected to.
31+
* @return The port the joystick is connected to.
3132
*/
3233
int port();
3334

3435
/**
3536
* The role the joystick serves, e.g. right driver, left operator, etc.
37+
* @return The role the joystick serves.
3638
* @see OI#leftDriver()
3739
* @see OI#rightDriver()
3840
* @see OI#leftOperator()
@@ -43,6 +45,7 @@
4345
/**
4446
* The physical model of joystick used. This determines how the
4547
* diagrams are mapped, and what button numbers are allowed.
48+
* @return The type of the joystick.
4649
*/
4750
Type type();
4851

src/main/java/org/usfirst/frc/team69/util/oi/WhenPressed.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
public @interface WhenPressed {
1818
/**
1919
* The number of the button (starting at 1) to bind to
20+
* @return The number of the button.
2021
*/
2122
int value();
2223
}

src/main/java/org/usfirst/frc/team69/util/oi/WhenReleased.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
public @interface WhenReleased {
1818
/**
1919
* The number of the button (starting at 1) to bind to
20+
* @return The number of the button.
2021
*/
2122
int value();
2223
}

src/main/java/org/usfirst/frc/team69/util/oi/WhileHeld.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
public @interface WhileHeld {
1818
/**
1919
* The number of the button (starting at 1) to bind to
20+
* @return The number of the button.
2021
*/
2122
int value();
2223
}

src/main/java/org/usfirst/frc/team69/util/port/Port.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public enum Type {
3333

3434
/**
3535
* The type of port used on the RIO
36+
* @return the type of the port
3637
*/
3738
public Type type();
3839
}

0 commit comments

Comments
 (0)