Skip to content

Commit

Permalink
pcorlessGH-42 Uses Map instead of HashMap
Browse files Browse the repository at this point in the history
  • Loading branch information
gtache committed Apr 16, 2021
1 parent 1ce558c commit 2867f7c
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@
* @since 4.0
*/
public class StateManager {
private static final Logger logger =
Logger.getLogger(StateManager.class.getName());
private static final Logger logger = Logger.getLogger(StateManager.class.getName());

// a list is all we might need.
private final HashMap<Reference, Change> changes;
private final Map<Reference, Change> changes;

// access to xref size and next revision number.
private final PTrailer trailer;
Expand Down

0 comments on commit 2867f7c

Please sign in to comment.