[wpiunits] Fix Javadoc warning (#6614)

This commit is contained in:
Tyler Veness
2024-05-12 10:25:44 -07:00
committed by GitHub
parent 4cb2edbb98
commit d3af27be94

View File

@@ -185,7 +185,11 @@ public final class UnitBuilder<U extends Unit<U>> {
return toBase(x -> x * aggregation).fromBase(b -> b / aggregation);
}
/** A functional interface for constructing new units without relying on reflection. */
/**
* A functional interface for constructing new units without relying on reflection.
*
* @param <U> the type of the unit
*/
@FunctionalInterface
public interface UnitConstructorFunction<U extends Unit<U>> {
/**