mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
Fix documentation warnings generated by JavaDoc (NFC) (#3428)
Some C++ Doxygen comments were updated to reflect any wording changes. See `rg "(@return|@param \w+) TODO" | less` for list of incomplete docs.
This commit is contained in:
@@ -366,7 +366,11 @@ public final class NetworkTable {
|
||||
return getEntry(key).getValue();
|
||||
}
|
||||
|
||||
/** Get the path of the NetworkTable. */
|
||||
/**
|
||||
* Get the path of the NetworkTable.
|
||||
*
|
||||
* @return The path of the NetworkTable.
|
||||
*/
|
||||
public String getPath() {
|
||||
return m_path;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,11 @@ public final class NetworkTablesJNI {
|
||||
}
|
||||
}
|
||||
|
||||
/** Force load the library. */
|
||||
/**
|
||||
* Force load the library.
|
||||
*
|
||||
* @throws IOException if the library fails to load
|
||||
*/
|
||||
public static synchronized void forceLoad() throws IOException {
|
||||
if (libraryLoaded) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user