Skip to content

Commit a41aaa6

Browse files
authored
Update PriorityQueueSort.java
1 parent 0bb5df0 commit a41aaa6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/thealgorithms/sorts/PriorityQueueSort.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
public final class PriorityQueueSort {
2121

2222
// Private constructor to prevent instantiation (utility class)
23-
private PriorityQueueSort() {}
23+
private PriorityQueueSort() {
24+
25+
}
2426

2527
/**
2628
* Sorts the given array in ascending order using a PriorityQueue.

0 commit comments

Comments
 (0)