Skip to content

Commit a5a2a3c

Browse files
committed
ensure that the neames of the cloned objects is not clobbered.
1 parent ef01735 commit a5a2a3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BowlerStudio

src/main/java/com/commonwealthrobotics/controls/SelectionSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1914,7 +1914,7 @@ public ArrayList<CSG> getAllVisable() {
19141914
continue;
19151915
if (c.isHole())
19161916
continue;
1917-
back.add(c);
1917+
back.add(c.clone());
19181918
}
19191919
return back;
19201920
}

0 commit comments

Comments
 (0)