mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[docs] Build with JavaDoc 17 and add missing docs (#6220)
Co-authored-by: Sam Carlberg <sam.carlberg@gmail.com>
This commit is contained in:
@@ -14,12 +14,12 @@ package edu.wpi.first.units;
|
||||
* {@link Units} class.
|
||||
*/
|
||||
public class Energy extends Unit<Energy> {
|
||||
protected Energy(
|
||||
Energy(
|
||||
UnaryFunction toBaseConverter, UnaryFunction fromBaseConverter, String name, String symbol) {
|
||||
super(Energy.class, toBaseConverter, fromBaseConverter, name, symbol);
|
||||
}
|
||||
|
||||
protected Energy(double baseUnitEquivalent, String name, String symbol) {
|
||||
Energy(double baseUnitEquivalent, String name, String symbol) {
|
||||
super(Energy.class, baseUnitEquivalent, name, symbol);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user