From 3528399b2e385bffcfe0a2fff27d2a866d04a77a Mon Sep 17 00:00:00 2001 From: Piotr Idzik <65706193+vil02@users.noreply.github.com> Date: Sat, 13 Jan 2024 10:26:44 +0100 Subject: [PATCH] Remove unused import from `JobSequencing` (#5017) style: remove unused import from `JobSequencing` --- .../java/com/thealgorithms/greedyalgorithms/JobSequencing.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/com/thealgorithms/greedyalgorithms/JobSequencing.java b/src/main/java/com/thealgorithms/greedyalgorithms/JobSequencing.java index bf81e067b..4d2cf7c95 100644 --- a/src/main/java/com/thealgorithms/greedyalgorithms/JobSequencing.java +++ b/src/main/java/com/thealgorithms/greedyalgorithms/JobSequencing.java @@ -2,7 +2,6 @@ package com.thealgorithms.greedyalgorithms; import java.util.ArrayList; import java.util.Arrays; -import java.util.Collections; // Problem Link: https://en.wikipedia.org/wiki/Job-shop_scheduling