From a3effbfb9fb66b36eddd8116d0d7927e8a720550 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sat, 19 Sep 2015 11:45:07 -0700 Subject: [PATCH] Java NetworkTable: Don't use ipAddress when starting server. This matches the C++ behavior. Using the IP address here is confusing to users because it's actually the listen address. --- java/src/edu/wpi/first/wpilibj/networktables/NetworkTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/src/edu/wpi/first/wpilibj/networktables/NetworkTable.java b/java/src/edu/wpi/first/wpilibj/networktables/NetworkTable.java index 3918635464..26659afb5f 100644 --- a/java/src/edu/wpi/first/wpilibj/networktables/NetworkTable.java +++ b/java/src/edu/wpi/first/wpilibj/networktables/NetworkTable.java @@ -41,7 +41,7 @@ public class NetworkTable implements ITable, IRemote { if (client) NetworkTablesJNI.startClient(ipAddress, port); else - NetworkTablesJNI.startServer(persistentFilename, ipAddress, port); + NetworkTablesJNI.startServer(persistentFilename, "", port); running = true; }