mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Clean up Java warning suppressions (#4433)
Checkstyle naming conventions were changed to allow most of what's in wpimath. Naming rules were disabled completely in wpimath since almost all suppressions are for math notation.
This commit is contained in:
@@ -22,7 +22,7 @@ public class MockDS {
|
||||
data[5] = 0x00; // red 1 station
|
||||
}
|
||||
|
||||
@SuppressWarnings("MissingJavadocMethod")
|
||||
/** Start the mock DS thread. */
|
||||
public void start() {
|
||||
m_thread =
|
||||
new Thread(
|
||||
@@ -67,7 +67,7 @@ public class MockDS {
|
||||
m_thread.start();
|
||||
}
|
||||
|
||||
@SuppressWarnings("MissingJavadocMethod")
|
||||
/** Stop the mock DS thread. */
|
||||
public void stop() {
|
||||
if (m_thread == null) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user