union korrigiert

master
akimmig 2023-01-23 12:31:58 +01:00
parent 3c64f58439
commit 97f12cf817
1 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ public class Set<T>
Node<T> current2 = s.first; Node<T> current2 = s.first;
while (current2 != null) { while (current2 != null) {
neu.add(current2.wert); neu.add(current2.wert);
current = current2.next; current2 = current2.next;
} }
return neu; return neu;