Skip to content
This repository has been archived by the owner on Sep 21, 2020. It is now read-only.

Commit

Permalink
Made package local methods in NetworkTableInstance public (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul authored and PeterJohnson committed Sep 23, 2017
1 parent 95bce5d commit 4b2aaee
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public void removeEntryListener(int listener) {
* 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;
}
Expand Down Expand Up @@ -464,7 +464,7 @@ public void removeConnectionListener(int listener) {
* 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;
}
Expand Down Expand Up @@ -586,7 +586,7 @@ public void createRpc(NetworkTableEntry entry, Consumer<RpcAnswer> callback) {
* 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;
}
Expand Down Expand Up @@ -1036,7 +1036,7 @@ public void removeLogger(int logger) {
* 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;
}
Expand Down

0 comments on commit 4b2aaee

Please sign in to comment.