From 4b2aaee9eafc44d21ae55106283b3d0b41531499 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Fri, 22 Sep 2017 22:31:19 -0700 Subject: [PATCH] Made package local methods in NetworkTableInstance public (#234) --- .../edu/wpi/first/networktables/NetworkTableInstance.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/edu/wpi/first/networktables/NetworkTableInstance.java b/src/main/java/edu/wpi/first/networktables/NetworkTableInstance.java index 5e337cde8f..7e0e3fbc7c 100644 --- a/src/main/java/edu/wpi/first/networktables/NetworkTableInstance.java +++ b/src/main/java/edu/wpi/first/networktables/NetworkTableInstance.java @@ -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; }