Skip to content

Commit

Permalink
Update table
Browse files Browse the repository at this point in the history
  • Loading branch information
ngallagher committed Mar 26, 2019
1 parent a01c8b9 commit 01d47a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/simpleframework/xml/util/Dictionary.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
package org.simpleframework.xml.util;

import java.util.AbstractSet;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;

/**
* The <code>Dictionary</code> object represents a mapped set of entry
Expand Down Expand Up @@ -134,7 +134,7 @@ public T remove(String name) {
*
* @see org.simpleframework.xml.util.Entry
*/
private static class Table<T> extends HashMap<String, T> {
private static class Table<T> extends LinkedHashMap<String, T> {

/**
* Constructor for the <code>Table</code> object. This will
Expand Down

0 comments on commit 01d47a6

Please sign in to comment.