diff --git a/java/src/edu/wpi/first/wpilibj/networktables/ConnectionInfo.java b/java/src/edu/wpi/first/wpilibj/networktables/ConnectionInfo.java index eb1aec940d..03ae474763 100644 --- a/java/src/edu/wpi/first/wpilibj/networktables/ConnectionInfo.java +++ b/java/src/edu/wpi/first/wpilibj/networktables/ConnectionInfo.java @@ -7,7 +7,7 @@ public class ConnectionInfo { public final long last_update; public final int protocol_version; - ConnectionInfo(String remote_id, String remote_ip, int remote_port, long last_update, int protocol_version) { + public ConnectionInfo(String remote_id, String remote_ip, int remote_port, long last_update, int protocol_version) { this.remote_id = remote_id; this.remote_ip = remote_ip; this.remote_port = remote_port; diff --git a/java/src/edu/wpi/first/wpilibj/networktables/EntryInfo.java b/java/src/edu/wpi/first/wpilibj/networktables/EntryInfo.java index b73e0e6c64..15c1980209 100644 --- a/java/src/edu/wpi/first/wpilibj/networktables/EntryInfo.java +++ b/java/src/edu/wpi/first/wpilibj/networktables/EntryInfo.java @@ -6,7 +6,7 @@ public class EntryInfo { public final int flags; public final long last_change; - EntryInfo(String name, int type, int flags, long last_change) { + public EntryInfo(String name, int type, int flags, long last_change) { this.name = name; this.type = type; this.flags = flags;