Skip to content

Commit

Permalink
'#1950: No need for using SortedMap.
Browse files Browse the repository at this point in the history
  • Loading branch information
wladimirleite committed Oct 29, 2023
1 parent 84997cc commit 84f2f43
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.SortedMap;
import java.util.TreeMap;

import javax.swing.BorderFactory;
Expand Down Expand Up @@ -93,7 +92,7 @@ public class ProgressFrame extends JFrame implements PropertyChangeListener, Act
private boolean paused = false;
private String decodingDir = null;
private long physicalMemory;
private static final SortedMap<String, Long> timesPerParser = new TreeMap<String, Long>();
private static final Map<String, Long> timesPerParser = new TreeMap<String, Long>();

private static class RestrictedSizeLabel extends JLabel {

Expand Down

0 comments on commit 84f2f43

Please sign in to comment.