We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baf26af commit e63d2d5Copy full SHA for e63d2d5
build.gradle
@@ -17,7 +17,7 @@ repositories {
17
}
18
19
dependencies {
20
- implementation "com.neuronrobotics:SimplePacketComsJava:0.8.4"
+ implementation "com.neuronrobotics:SimplePacketComsJava:0.9.2"
21
//implementation project(":SimplePacketComsJava")
22
23
src/main/java/edu/wpi/rbe/rbe2001/fieldsimulator/robot/RBE2001Robot.java
@@ -135,6 +135,7 @@ public void addIR() {
135
136
public static List<RBE2001Robot> get(String name,int myPID) throws Exception {
137
HashSet<InetAddress> addresses = UDPSimplePacketComs.getAllAddresses(name);
138
+
139
ArrayList<RBE2001Robot> robots = new ArrayList<>();
140
if (addresses.size() < 1) {
141
System.out.println("No " + RBE2001Robot.class.getSimpleName() + " found named " + name);
0 commit comments