Skip to content

Commit 7d13d5e

Browse files
committed
Fix
1 parent 68c8e69 commit 7d13d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/scheduling/RandomScheduling.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public final class RandomScheduling {
2828
* @param random A Random instance for generating random numbers.
2929
*/
3030
public RandomScheduling(Collection<String> tasks, Random random) {
31-
this.tasks = new ArrayList<>(tasks); // Store tasks locally
31+
this.tasks = new ArrayList<>(tasks);
3232
this.random = random;
3333
}
3434

0 commit comments

Comments
 (0)