mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
Made package local methods in NetworkTableInstance public (#234)
This commit is contained in:
committed by
Peter Johnson
parent
95bce5d656
commit
4b2aaee9ea
@@ -334,7 +334,7 @@ public final class NetworkTableInstance {
|
||||
* or a negative value to block indefinitely
|
||||
* @return False if timed out, otherwise true.
|
||||
*/
|
||||
boolean waitForEntryListenerQueue(double timeout) {
|
||||
public boolean waitForEntryListenerQueue(double timeout) {
|
||||
if (!NetworkTablesJNI.waitForEntryListenerQueue(m_handle, timeout)) {
|
||||
return false;
|
||||
}
|
||||
@@ -464,7 +464,7 @@ public final class NetworkTableInstance {
|
||||
* or a negative value to block indefinitely
|
||||
* @return False if timed out, otherwise true.
|
||||
*/
|
||||
boolean waitForConnectionListenerQueue(double timeout) {
|
||||
public boolean waitForConnectionListenerQueue(double timeout) {
|
||||
if (!NetworkTablesJNI.waitForConnectionListenerQueue(m_handle, timeout)) {
|
||||
return false;
|
||||
}
|
||||
@@ -586,7 +586,7 @@ public final class NetworkTableInstance {
|
||||
* or a negative value to block indefinitely
|
||||
* @return False if timed out, otherwise true.
|
||||
*/
|
||||
boolean waitForRpcCallQueue(double timeout) {
|
||||
public boolean waitForRpcCallQueue(double timeout) {
|
||||
if (!NetworkTablesJNI.waitForRpcCallQueue(m_handle, timeout)) {
|
||||
return false;
|
||||
}
|
||||
@@ -1036,7 +1036,7 @@ public final class NetworkTableInstance {
|
||||
* or a negative value to block indefinitely
|
||||
* @return False if timed out, otherwise true.
|
||||
*/
|
||||
boolean waitForLoggerQueue(double timeout) {
|
||||
public boolean waitForLoggerQueue(double timeout) {
|
||||
if (!NetworkTablesJNI.waitForLoggerQueue(m_handle, timeout)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user