[docs] Fix warnings about undocumented default constructors (#6151)

This commit is contained in:
Tyler Veness
2024-01-04 13:57:21 -08:00
committed by GitHub
parent 0f060afb55
commit 4210f5635d
17 changed files with 55 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ package edu.wpi.first.hal;
/**
* JNI wrapper for library <b>FRC_NetworkCommunication</b><br>.
*/
public class FRCNetComm {
public final class FRCNetComm {
/**
* Resource type from UsageReporting.
*/
@@ -31,4 +31,7 @@ ${usage_reporting_types}
${usage_reporting_instances}
}
/** Utility class. */
private FRCNetComm() {}
}