mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Make members of ConnectionInfo and EntryInfo public.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
package edu.wpi.first.wpilibj.networktables;
|
||||
|
||||
public class ConnectionInfo {
|
||||
final String remote_id;
|
||||
final String remote_name;
|
||||
final int remote_port;
|
||||
final long last_update;
|
||||
final int protocol_version;
|
||||
public final String remote_id;
|
||||
public final String remote_name;
|
||||
public final int remote_port;
|
||||
public final long last_update;
|
||||
public final int protocol_version;
|
||||
|
||||
ConnectionInfo(String remote_id, String remote_name, int remote_port, long last_update, int protocol_version) {
|
||||
this.remote_id = remote_id;
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package edu.wpi.first.wpilibj.networktables;
|
||||
|
||||
public class EntryInfo {
|
||||
final String name;
|
||||
final int type;
|
||||
final int flags;
|
||||
final long last_change;
|
||||
public final String name;
|
||||
public final int type;
|
||||
public final int flags;
|
||||
public final long last_change;
|
||||
|
||||
EntryInfo(String name, int type, int flags, long last_change) {
|
||||
this.name = name;
|
||||
|
||||
Reference in New Issue
Block a user