Skip to content

Commit e63d2d5

Browse files
committed
Updating simple packet coms version
1 parent baf26af commit e63d2d5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717
}
1818

1919
dependencies {
20-
implementation "com.neuronrobotics:SimplePacketComsJava:0.8.4"
20+
implementation "com.neuronrobotics:SimplePacketComsJava:0.9.2"
2121
//implementation project(":SimplePacketComsJava")
2222

2323
}

src/main/java/edu/wpi/rbe/rbe2001/fieldsimulator/robot/RBE2001Robot.java

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public void addIR() {
135135
}
136136
public static List<RBE2001Robot> get(String name,int myPID) throws Exception {
137137
HashSet<InetAddress> addresses = UDPSimplePacketComs.getAllAddresses(name);
138+
138139
ArrayList<RBE2001Robot> robots = new ArrayList<>();
139140
if (addresses.size() < 1) {
140141
System.out.println("No " + RBE2001Robot.class.getSimpleName() + " found named " + name);

0 commit comments

Comments
 (0)