Skip to content

Commit bd6cf6b

Browse files
authored
Update PriorityQueueSort.java
1 parent 5fcc211 commit bd6cf6b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
public final class PriorityQueueSort {
2222

2323
// Private constructor to prevent instantiation (utility class)
24-
private PriorityQueueSort() { }
24+
private PriorityQueueSort() {
25+
}
2526

2627
/**
2728
* Sorts the given array in ascending order using a PriorityQueue.

0 commit comments

Comments
 (0)