mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
[build] Globally Exclude PMD.TooManyMethods (#2793)
This was not a useful check, as every time we hit it, we simply excluded it.
This commit is contained in:
@@ -17,7 +17,7 @@ package edu.wpi.first.wpiutil.math;
|
||||
*
|
||||
* @param <T> The {@link Num} this represents.
|
||||
*/
|
||||
@SuppressWarnings({"MethodName", "unused", "PMD.TooManyMethods"})
|
||||
@SuppressWarnings({"MethodName", "unused"})
|
||||
public interface Nat<T extends Num> {
|
||||
/**
|
||||
* The number this interface represents.
|
||||
|
||||
Reference in New Issue
Block a user